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