2017-11-30 18:05:55 +01:00
|
|
|
import currentstate from './elements/currentstate';
|
2017-11-28 21:57:05 +01:00
|
|
|
import heatmap from './elements/heatmap';
|
2017-11-30 20:18:49 +01:00
|
|
|
import linechart from './elements/linechart';
|
2017-11-28 21:57:05 +01:00
|
|
|
import polar from './elements/polar';
|
2017-11-30 18:05:55 +01:00
|
|
|
import time from './elements/time';
|
2017-11-28 21:57:05 +01:00
|
|
|
|
|
|
|
export default {
|
2017-11-30 18:05:55 +01:00
|
|
|
currentstate,
|
2017-11-28 21:57:05 +01:00
|
|
|
heatmap,
|
2017-11-30 20:18:49 +01:00
|
|
|
linechart,
|
2017-11-28 21:57:05 +01:00
|
|
|
polar,
|
2017-11-30 18:05:55 +01:00
|
|
|
time,
|
2017-11-28 21:57:05 +01:00
|
|
|
};
|