@gitlab/ui
Version:
GitLab UI Components
32 lines (29 loc) • 904 B
JavaScript
import CustomOptionsExample from './heatmap.custom_options.example';
import HourlyExample from './heatmap.hourly.example';
import CustomResponsiveExample from './heatmap.responsive.example';
import TotalsExample from './heatmap.totals.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
}, {
id: 'heatmap-responsive',
name: 'Heatmap which is non mobile responsive',
description: 'CustomResponsiveExample',
component: CustomResponsiveExample
}]
}];
export default index;