19 lines
368 B
Python
19 lines
368 B
Python
import dash_mantine_components as dmc
|
|
|
|
from .image import image_element
|
|
from .inputs import inputs_element
|
|
|
|
|
|
body_element = dmc.Container(
|
|
fluid=True,
|
|
children=[
|
|
dmc.Grid(
|
|
grow=True,
|
|
children=[
|
|
dmc.Col([image_element], span=5),
|
|
dmc.Col([inputs_element], span=7)
|
|
],
|
|
)
|
|
],
|
|
)
|