test / app.py
vasudevgupta's picture
Create new file
8f7ce06
raw
history blame
134 Bytes
from dash import Dash, HTML
app = Dash(__name__)
app.layout = html.Div(html.H1("Coool stuff"))
app.run_server(debug=True, port=8080)