vasudevgupta commited on
Commit
8f7ce06
1 Parent(s): e40099a

Create new file

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from dash import Dash, HTML
2
+
3
+ app = Dash(__name__)
4
+ app.layout = html.Div(html.H1("Coool stuff"))
5
+
6
+ app.run_server(debug=True, port=8080)