import dash | |
from dash import html | |
dash.register_page(__name__, path='/', location="sidebar") | |
layout = html.Div([ | |
html.H1('This is the home page for analyzing 10x flex datasets'), | |
html.Div('Please select one of the above datasets.'), | |
]) |
import dash | |
from dash import html | |
dash.register_page(__name__, path='/', location="sidebar") | |
layout = html.Div([ | |
html.H1('This is the home page for analyzing 10x flex datasets'), | |
html.Div('Please select one of the above datasets.'), | |
]) |