import 'chart.js/auto';
import { Line } from 'react-chartjs-2';

import { type LineChartProps } from './types';

const LineChart = (props: LineChartProps) => {
  return <Line {...props} />;
};

export type { LineChartProps };
export default LineChart;
