Address comments

- Add missing snippet
This commit is contained in:
Kyle Gach 2023-01-13 08:24:29 -07:00
parent b97d94e005
commit 45d053b1bc
3 changed files with 27 additions and 6 deletions

View File

@ -0,0 +1,26 @@
```ts
// TodoItem.stories.ts
import type { Meta, StoryObj } from '@storybook/web-components';
import fetch from 'node-fetch';
const meta: Meta = {
title: 'Examples/Loader'
component: 'demo-todo-item',
render: (args, { loaded: { todo } }) => TodoItem({...args, ...todo}),
};
export default meta;
type Story = StoryObj;
export const Primary: Story = {
loaders: [
async () => ({
todo: await (
await fetch('https://jsonplaceholder.typicode.com/todos/1')
).json(),
}),
],
};
```

View File

@ -5,12 +5,6 @@ import { LitElement, html } from 'lit-element';
@customElement('demo-document-screen')
class DocumentScreen extends LitElement {
static get properties() {
return {
data: { type: Object },
}
}
@property({ type: Object })
data: {
user: Record<string, unknown>;

View File

@ -22,6 +22,7 @@ Loaders are helpful when you need to load story data externally (e.g., from a re
'vue/loader-story.3.js.mdx',
'vue/loader-story.ts-3.ts.mdx',
'angular/loader-story.ts.mdx',
'web-components/loader-story.js.mdx',
'web-components/loader-story.ts.mdx',
'svelte/loader-story.js.mdx',
]}