BlurMe/blurme/state.py

13 lines
200 B
Python
Raw Normal View History

"""Base state for the app."""
import reflex as rx
class State(rx.State):
"""Base state for the app.
The base state is used to store general vars used throughout the app.
"""
pass