plesna/dashboard/pages/home.py

10 lines
184 B
Python
Raw Normal View History

2024-07-27 13:55:20 +00:00
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.'),
])