mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/cief-dashboard.git
synced 2026-08-19 04:24:13 +00:00
15 lines
356 B
Python
15 lines
356 B
Python
from app import *
|
|
|
|
layout = html.Div([
|
|
dbc.Jumbotron([
|
|
html.H1("Welcome to CIEF Dashboard", className="display-4"),
|
|
html.P(
|
|
"Interactive dashboard with latest information",
|
|
className="lead",
|
|
),
|
|
html.P(
|
|
"Warehouse information, exchange information"
|
|
)
|
|
])
|
|
])
|