14 lines
265 B
Python
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
|