test / app.py
vasudevgupta's picture
Update app.py
65ff58d
raw
history blame contribute delete
150 Bytes
from dash import Dash, html
app = Dash(__name__)
app.layout = html.Div(html.H1("Coool stuff"))
app.run_server(debug=True, port=7860, host='0.0.0.0')