```js // Checkbox.stories.js import { Checkbox } from './Checkbox'; export default { title: "MDX/Checkbox", component: Checkbox }; const Template = (args) => export const Unchecked = Template.bind({}); Unchecked.args = { label: 'Unchecked' }; ```