state.py 200 B

123456789101112
  1. """Base state for the app."""
  2. import reflex as rx
  3. class State(rx.State):
  4. """Base state for the app.
  5. The base state is used to store general vars used throughout the app.
  6. """
  7. pass