storybook/code/examples/ember-cli/stories/polyfill-example.stories.js
Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +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>
`,
};
};