BlurMe/blurme/blurme.py

13 lines
212 B
Python
Raw Normal View History

"""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()