Spaces:
Sleeping
Sleeping
from dash import Dash, dash_table, html | |
app = Dash(__name__) | |
server = app.server | |
app.layout = html.Div([ | |
html.Div(children='ODR Exploratory Data Analysis Dashboard'), | |
dash_table.DataTable() | |
]) | |
def main(): | |
app.run(debug=True) |