reflex/integration/shared/state.py
benedikt-bartscher f27eae7655
fix AppHarness reloading (#2916)
* move AppHarness tests to module scope

* fix AppHarness reloading

* add test

* docstrings and formatting

* fix benchmarks not reloading state module
2024-03-26 11:09:46 -07:00

9 lines
188 B
Python

"""Simple module which contains one reusable reflex state class."""
import reflex as rx
class SharedState(rx.State):
"""Shared state class for reflexers using librarys."""
pass