Arts-of-coding commited on
Commit
9deab1d
·
verified ·
1 Parent(s): acc5bdf

Create topic_1.py

Browse files
Files changed (1) hide show
  1. pages/topic_1.py +13 -0
pages/topic_1.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dash
2
+ from dash import html
3
+
4
+ import dash_bootstrap_components as dbc
5
+
6
+ from .side_bar import sidebar
7
+
8
+ dash.register_page(__name__, name="Topics")
9
+
10
+ def layout(**kwargs):
11
+ return dbc.Row(
12
+ [dbc.Col(sidebar(), width=2), dbc.Col(html.Div("Topics Home Page"), width=10)]
13
+ )