Arts-of-coding commited on
Commit
c891b73
·
verified ·
1 Parent(s): 4814513

Delete pages/topic_1.py

Browse files
Files changed (1) hide show
  1. pages/topic_1.py +0 -13
pages/topic_1.py DELETED
@@ -1,13 +0,0 @@
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
- )