@gitlab/ui
Version:
GitLab UI Components
29 lines (26 loc) • 869 B
JavaScript
import BannerPromotingExample from './banner.promoting.example';
import BannerPromotingIllustrationExample from './banner.promoting_illustration.example';
import BannerIntroducingIllustrationExample from './banner.introducing_illustration.example';
var index = [{
name: 'Introduction',
items: [{
id: 'banner-introduction',
name: 'Basic Introduction',
description: 'Basic Introduction Banner',
component: BannerIntroducingIllustrationExample
}]
}, {
name: 'Promotion',
items: [{
id: 'banner-promotion-illustration',
name: 'Promotion with Illustration',
description: 'Promotion Banner with Illustration',
component: BannerPromotingIllustrationExample
}, {
id: 'banner-promotion',
name: 'Basic Promotion',
description: 'Basic Promotion Banner',
component: BannerPromotingExample
}]
}];
export default index;