13 lines
212 B
Python
13 lines
212 B
Python
|
"""Welcome to Reflex!."""
|
||
|
|
||
|
from blurme import styles
|
||
|
|
||
|
# Import all the pages.
|
||
|
from blurme.pages import *
|
||
|
|
||
|
import reflex as rx
|
||
|
|
||
|
# Create the app and compile it.
|
||
|
app = rx.App(style=styles.base_style)
|
||
|
app.compile()
|