Created
March 4, 2020 18:26
-
-
Save randyzwitch/f7f07b44ea8173e9ceb08819dd88a9e3 to your computer and use it in GitHub Desktop.
Dash layout of OmniSci F1 dashboard
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
app = dash.Dash(__name__, external_stylesheets = [dbc.themes.DARKLY]) | |
app.title = "OmniSci Grand Prix | Converge 2019" | |
app.config['suppress_callback_exceptions'] = True | |
server = app.server | |
body = dbc.Container([ | |
dbc.Row([track, leaderboard]), | |
dbc.Row([telemetry, menubox]) | |
], | |
className="mt-4", | |
fluid=True | |
) | |
app.layout = html.Div([navbar, body]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment