@gitlab/ui
Version:
GitLab UI Components
26 lines (23 loc) • 664 B
JavaScript
import HourlyExample from './heatmap.hourly.example';
import TotalsExample from './heatmap.totals.example';
import CustomOptionsExample from './heatmap.custom_options.example';
var index = [{
name: 'Calendar',
items: [{
id: 'heatmap-hourly',
name: 'Hourly breakdown',
description: 'HourlyExample',
component: HourlyExample
}, {
id: 'heatmap-totals',
name: 'Histograms over time',
description: 'TotalsExample',
component: TotalsExample
}, {
id: 'heatmap-custom-options',
name: 'Heatmap with no background',
description: 'CustomOptionsExample',
component: CustomOptionsExample
}]
}];
export default index;