```md import { Canvas, Meta, Story } from '@storybook/addon-docs'; import Checkbox from './Checkbox.svelte'; # Checkbox With `MDX`, we can define a story for `Checkbox` right in the middle of our Markdown documentation. export const Template = (args) => ({ Component: Button, props: args, }); {Template.bind({})} {Template.bind({})} {Template.bind({})} ```