@gitlab/ui
Version:
GitLab UI Components
41 lines (38 loc) • 1.03 kB
JavaScript
import BasicPathExample from './path.basic.example';
import PathBackgroundExample from './path.background.example';
import PathWithMetricExample from './path.metric.example';
import PathWithIconExample from './path.icon.example';
import PathWithAllOptionsExample from './path.all.example';
var index = [{
name: 'Basic',
items: [{
id: 'path-basic',
name: 'Path Basic',
description: 'Basic Path',
component: BasicPathExample
}, {
id: 'path-background',
name: 'Path Background',
description: 'Path Background',
component: PathBackgroundExample
}]
}, {
name: 'Advanced',
items: [{
id: 'path-with-metric',
name: 'With Metric',
description: 'With Metric',
component: PathWithMetricExample
}, {
id: 'path-icon',
name: 'With Icon',
description: 'With Icon',
component: PathWithIconExample
}, {
id: 'path-full',
name: 'With All Options',
description: 'With All Options',
component: PathWithAllOptionsExample
}]
}];
export default index;