
* pyi_generator: always ignore files starting with `tests` * Move CodeBlock out of chakra namespace * Expose additional names in the top-level namespace * code pyi fixup * expose input and quote at the top-level * add text_field to top-level namespace (maybe) * fixup chakra code.pyi * Remove `text_field` from top level namespace * Remove top-level big C Cond * fixup top level pyi
11 lines
174 B
Python
11 lines
174 B
Python
"""A code component."""
|
|
from reflex.components.chakra import (
|
|
ChakraComponent,
|
|
)
|
|
|
|
|
|
class Code(ChakraComponent):
|
|
"""Used to display inline code."""
|
|
|
|
tag = "Code"
|