mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
21 lines
395 B
JavaScript
21 lines
395 B
JavaScript
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
export default {
|
|
title: 'EmberOptions/Polyfills',
|
|
};
|
|
|
|
export const namedBlockExample = () => {
|
|
return {
|
|
template: hbs`
|
|
<NamedBlock
|
|
>
|
|
<:title>This article is awesome!</:title>
|
|
<:body>
|
|
My blog has very awesome content, and everyone should
|
|
read it.
|
|
</:body>
|
|
</NamedBlock>
|
|
`,
|
|
};
|
|
};
|