14 lines
214 B
Python
14 lines
214 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()
|