storybook/examples/ember-cli/stories/polyfill-example.stories.js
2020-09-15 16:11:44 +02:00

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>
`,
};
};