```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(),
}),
]}
>
{(args, { loaded: { todo } }) => ({
props: {
todo: todo,
},
})}
```