UNPKG

dce-charts

Version:
30 lines (27 loc) 924 B
// Import charts individually import DoughnutChart from './components/DoughnutChart'; import LineChart from './components/LineChart'; import HorizontalBarChart from './components/HorizontalBarChart'; import VerticalBarChart from './components/VerticalBarChart'; // Import colors import BlueColor from './shared/constants/presetColors/BlueColor'; import GreenColor from './shared/constants/presetColors/GreenColor'; import OrangeColor from './shared/constants/presetColors/OrangeColor'; import PurpleColor from './shared/constants/presetColors/PurpleColor'; import RedColor from './shared/constants/presetColors/RedColor'; import YellowColor from './shared/constants/presetColors/YellowColor'; // export all in a massive block export { // components DoughnutChart, LineChart, HorizontalBarChart, VerticalBarChart, // colors RedColor, BlueColor, YellowColor, GreenColor, PurpleColor, OrangeColor, };