reflex/reflex/components/radix/themes/layout/__init__.py
2023-12-06 16:47:03 -08:00

14 lines
265 B
Python

"""Layout components."""
from .box import Box
from .container import Container
from .flex import Flex
from .grid import Grid
from .section import Section
box = Box.create
container = Container.create
flex = Flex.create
grid = Grid.create
section = Section.create