UNPKG

bulmil

Version:

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

22 lines (21 loc) 668 B
import { html } from 'lit-html'; export default { title: 'Layout|Footer', component: 'bm-footer', }; export const Example = () => { return html ` <main class="story-center"> <bm-footer> <div class="content has-text-centered"> <p> <strong>Bulma</strong> by <a href="https://jgthms.com">Jeremy Thomas</a>. The source code is licensed <a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>. </p> </div> </bm-footer> </main> `; };