9 lines
189 B
Python
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."""
|
|
|
|
...
|