recopytex/recopytex/dashboard/layout/layout.py

10 lines
205 B
Python

#!/usr/bin/env python
# encoding: utf-8
import dash_html_components as html
import dash_core_components as dcc
content = html.Div(id="page-content")
layout = html.Div([dcc.Location(id="url"), content])