@gitlab/ui
Version:
GitLab UI Components
20 lines (17 loc) • 571 B
JavaScript
import SparklineBasicExample from './sparkline.basic.example';
import SparklineNoLastYValueExample from './sparkline.no_last_y_value.example';
var index = [{
name: 'Basic',
items: [{
id: 'sparkline-basic',
name: 'Basic',
description: 'Basic sparkline chart',
component: SparklineBasicExample
}, {
id: 'sparkline-not-showing-last-y-value',
name: "Not showing the last entry's y-value",
description: "Basic sparkline chart not showing the last entry's y-value",
component: SparklineNoLastYValueExample
}]
}];
export default index;