reflex/reflex/components/next/base.py
2023-12-07 10:38:47 -08:00

9 lines
189 B
Python

"""Base for NextJS components."""
from reflex.components.component import Component
class NextComponent(Component):
"""A Component used as based for any NextJS component."""
...