UNPKG

bulmil

Version:

![bulmil](https://user-images.githubusercontent.com/2362138/65766959-c721a080-e16f-11e9-9fb9-45a5a2ad0391.jpg)

25 lines (24 loc) 626 B
import { select } from '@storybook/addon-knobs'; import { html } from 'lit-html'; export default { title: 'Layout|Section', component: 'bm-section', }; const sizes = { medium: 'is-medium', large: 'is-large', none: null, }; export const Sizes = () => { return html ` <bm-section size="${select('Size', sizes, null)}"> <div class="container"> <h1 class="title">Section</h1> <h2 class="subtitle"> A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading </h2> </div> </bm-section> `; };