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