UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

42 lines (41 loc) 1.35 kB
import BarChart from './visuals/BarChart'; import BarLineChart from './visuals/BarLineHybridChart'; import BubbleChart from './visuals/BubbleChart'; import DonutChart from './visuals/DonutChart'; import GaugeChart from './visuals/GaugeChart'; import GroupedBarChart from './visuals/GroupedBarChart'; import HeatmapChart from './visuals/HeatmapChart'; import HorizontalBarChart from './visuals/HorizontalBarChart'; import ItemPerformanceCard from './visuals/ItemPerformanceCard'; import LineChart from './visuals/LineChart'; import LineGraph from './visuals/LineGraph'; import MultiGaugeChart from './visuals/MultiGaugeChart'; import PieChart from './visuals/PieChart'; import SelectedEventTile from './visuals/SelectedEventTile'; import SpeedometerChart from './visuals/SpeedometerChart'; import Table from './visuals/Table'; import Tile from './visuals/Tile'; import TreeMap from './visuals/TreeMap'; import WaterfallChart from './visuals/WaterfallChart'; const componentRegistry = { BarChart, BarLineChart, DonutChart, GaugeChart, HeatmapChart, LineChart, MultiGaugeChart, PieChart, SpeedometerChart, Table, Tile, SelectedEventTile, TreeMap, ItemPerformanceCard, HorizontalBarChart, BubbleChart, WaterfallChart, LineGraph, GroupedBarChart, }; export default componentRegistry;