Arts-of-coding commited on
Commit
f09ad6c
·
verified ·
1 Parent(s): 0e645a0

Create home.py

Browse files
Files changed (1) hide show
  1. pages/home.py +9 -0
pages/home.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import dash
2
+ from dash import html
3
+
4
+ dash.register_page(__name__, path='/')
5
+
6
+ layout = html.Div([
7
+ html.H1('This is the home page for analyzing 10x flex datasets'),
8
+ html.Div('Please select one of the above datasets.'),
9
+ ])