10 lines
222 B
Python
10 lines
222 B
Python
"""Components that are based on Chakra-UI."""
|
|
|
|
from pynecone.components.component import Component
|
|
|
|
|
|
class ChakraComponent(Component):
|
|
"""A component that wraps a Chakra component."""
|
|
|
|
library = "@chakra-ui/react"
|