18 lines
306 B
Python
18 lines
306 B
Python
"""Welcome to Reflex!."""
|
|
|
|
from reflex_ipad import styles
|
|
|
|
# Import all the pages.
|
|
from reflex_ipad.pages import *
|
|
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()
|