From 27babaebfdeb3a5f1e2ba05a8b184bffabcb39ec Mon Sep 17 00:00:00 2001 From: Tom Begley Date: Wed, 28 Dec 2022 11:33:32 +0000 Subject: [PATCH] Cleanup demo app (#915) --- demo/app.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 demo/app.py diff --git a/demo/app.py b/demo/app.py deleted file mode 100644 index f86dec0c9..000000000 --- a/demo/app.py +++ /dev/null @@ -1,11 +0,0 @@ -import dash_bootstrap_components as dbc -from dash import Dash - -app = Dash(external_stylesheets=[dbc.themes.BOOTSTRAP]) - -test_content = dbc.Alert("Use this as a test playground", color="success") - -app.layout = dbc.Container(test_content, className="p-5") - -if __name__ == "__main__": - app.run_server(debug=True)