10 lines
184 B
Python
10 lines
184 B
Python
|
import dash
|
||
|
from dash import html
|
||
|
|
||
|
dash.register_page(__name__, path='/')
|
||
|
|
||
|
layout = html.Div([
|
||
|
html.H1('This is our Home page'),
|
||
|
html.Div('This is our Home page content.'),
|
||
|
])
|