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