Spaces:
Running
Running
Arts-of-coding
commited on
Create home.py
Browse files- 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 |
+
])
|