reflex/reflex/components/graphing/recharts/recharts.py
2023-10-04 15:05:08 -07:00

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"]