Skip to content

lucafaggianelli/dash-templates

Repository files navigation

Dash Templates

Pre-made templates for Plotly Dash apps: get started with 2 lines of code!

Screenshot

Get started

pip install git+https://github.com/lucafaggianelli/dash-templates

For the moment only a Mantine template is available: more templates to come!

from dash import Dash

from dash_templates.mantine import get_layout

app = Dash(
    __name__,
    title="My app",
    use_pages=True,
)

app.layout = get_layout()


if __name__ == "__main__":
    app.run(debug=True)