mousesuture / pages /topic_1.py
Arts-of-coding's picture
Create topic_1.py
9deab1d verified
raw
history blame
286 Bytes
import dash
from dash import html
import dash_bootstrap_components as dbc
from .side_bar import sidebar
dash.register_page(__name__, name="Topics")
def layout(**kwargs):
return dbc.Row(
[dbc.Col(sidebar(), width=2), dbc.Col(html.Div("Topics Home Page"), width=10)]
)