I have a small piece of code here below. The issue here is the Dash Page does not start up. It pops a small icon naming "Loading...." , and the Page doesnt show up. I have tried couple of things but nothing works.
import dash
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash()
app.layout = html.Div('Dash Tutorials')
if __name__ == '__main__':
app.run_server(debug=True)
The main problem is server does starts and No error is shown. Would be a great help if someone could sort the reasons for this. Thanks in Advance.
Regards, Nisarg
This is probably a frontend/javascript code issue. Please check what's going on in the the browser via js console.