File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11import { LineChart as LineChartImpl } from "./LineChart" ;
22import type { LineChartProps } from "./LineChart" ;
33
4- export const LineChart : React . FC < LineChartProps > = LineChartImpl ;
4+ const LineChart : React . FC < LineChartProps > = LineChartImpl ;
5+
6+ export { LineChart , type LineChartProps } ;
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ const SkiaLoaderComponent: React.FC<SkiaLoaderComponentProps> = ({ Component })
4242 return < Component /> ;
4343} ;
4444
45- export const LineChart : React . FC < LineChartProps > = ( props ) => {
45+ const LineChart : React . FC < LineChartProps > = ( props ) => {
4646 return < SkiaLoaderComponent Component = { ( ) => < LineChartImpl { ...props } /> } /> ;
4747} ;
48+
49+ export { LineChart , type LineChartProps } ;
Original file line number Diff line number Diff line change 1- export { LineChart } from "./components/SkiaComponents" ;
1+ export { LineChart , type LineChartProps } from "./components/SkiaComponents" ;
22export { type AxisLabelComponentProps } from "./components/LineChart/AxisLabel" ;
You can’t perform that action at this time.
0 commit comments