Created
May 13, 2022 18:08
-
-
Save tolgahancepel/3dda05145261918ed9ac6d6e51ca76de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------------------------------- | |
| # Application layout | |
| # ----------------------------------------------------------------------------- | |
| app.layout = dbc.Container( | |
| [ | |
| dcc.Interval(id='update', n_intervals=0, interval=1000*3), | |
| html.H1("Monitoring IoT Sensor Data with Plotly Dash"), | |
| html.Hr(), | |
| dbc.Row(dbc.Col(card, lg=4)) | |
| ] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment