UNPKG

bulmil

Version:

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

23 lines (22 loc) 529 B
import { boolean, select } from '@storybook/addon-knobs'; import { html } from 'lit-html'; export default { title: 'Layout|Container', component: 'bm-container', }; const breakpoints = { widescreen: 'is-widescreen', fullhd: 'is-fullhd', none: null, }; export const Example = () => { return html ` <bm-container class="story-center" is-fluid=${boolean('Fluid', false)} breakpoint=${select('Breakpoint', breakpoints, null)} > Hello Container 👋 </bm-container> `; };