22 lines
464 B
Python
22 lines
464 B
Python
"""A component that wraps a recharts lib."""
|
|
|
|
from typing import List
|
|
|
|
from reflex.components.component import Component, NoSSRComponent
|
|
|
|
|
|
class Recharts(Component):
|
|
"""A component that wraps a victory lib."""
|
|
|
|
library = "recharts"
|
|
|
|
lib_dependencies: List[str] = ["recharts@^2.8.0"]
|
|
|
|
|
|
class RechartsCharts(NoSSRComponent):
|
|
"""A component that wraps a victory lib."""
|
|
|
|
library = "recharts"
|
|
|
|
lib_dependencies: List[str] = ["recharts@^2.8.0"]
|