mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/cief-dashboard.git
synced 2026-08-22 22:14:23 +00:00
10 lines
309 B
Python
10 lines
309 B
Python
import dash
|
|
import dash_core_components as dcc
|
|
import dash_html_components as html
|
|
from dash.dependencies import Input, Output
|
|
import pandas as pd
|
|
import dash_bootstrap_components as dbc
|
|
|
|
app = dash.Dash(__name__, suppress_callback_exceptions=True,external_stylesheets=[dbc.themes.SLATE])
|
|
server = app.server
|