Spaces:
Running
Running
File size: 286 Bytes
9deab1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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)]
) |