import { ComponentProps } from "react"; import { Meta, StoryObj } from "@storybook/react"; import { Guide, Link } from "."; type Props = ComponentProps; export default { component: Guide } as Meta; export const Default: StoryObj = { args: { content: ( <>

This is an affordance meant to guide the user in using the extension and understanding its functioning and limitations.

Content in guides should be short and provide helpful links to relevant resources, such as the .

), header: "This is a hint" } };