Files
reflex-ipad/reflex_ipad/reflex_ipad.py
Matthias Bilger eef58c272f
All checks were successful
continuous-integration/drone/push Build is passing
remove medicine
2024-01-05 16:04:25 +01:00

18 lines
331 B
Python

"""Welcome to Reflex!."""
from reflex_ipad import styles
# Import all the pages.
from reflex_ipad.pages import index, dashboard, settings
from reflex_ipad import api
from reflex_ipad.models import *
import reflex as rx
# Create the app and compile it.
app = rx.App(style=styles.base_style)
api.register_at(app)
app.compile()