```md
import { Meta, Story } from '@storybook/addon-docs/blocks';
import { TodoItem } from './TodoItem';
import fetch from 'node-fetch';
({
todo: await (
await fetch('https://jsonplaceholder.typicode.com/todos/1')
).json(),
}),
]}
render={(args, { loaded: { todo } }) => ({
props: {
args,
todo,
},
})} />
```