
* move AppHarness tests to module scope * fix AppHarness reloading * add test * docstrings and formatting * fix benchmarks not reloading state module
9 lines
188 B
Python
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
|