Files
visual_critical_discourse_a…/src/web/layout/body.py
T

20 lines
418 B
Python

import dash_mantine_components as dmc
from dash import dcc, html
from typing import List
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)
],
)
],
)