mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/cief-dashboard.git
synced 2026-08-19 04:24:13 +00:00
13 lines
364 B
Python
13 lines
364 B
Python
import dash
|
|
import dash_core_components as dcc
|
|
import dash_html_components as html
|
|
from dash.dependencies import Input, Output, State
|
|
import dash_bootstrap_components as dbc
|
|
|
|
import pandas as pd
|
|
import numpy as np
|
|
import plotly.express as px
|
|
|
|
app = dash.Dash(__name__, suppress_callback_exceptions=True,external_stylesheets=[dbc.themes.SLATE])
|
|
server = app.server
|