10 lines
156 B
Python
10 lines
156 B
Python
import reflex as rx
|
|
from examples.pages import *
|
|
|
|
|
|
class State(rx.State):
|
|
"""Define empty state to allow access to rx.State.router."""
|
|
|
|
|
|
app = rx.App()
|