import { ComponentProps } from "react"; import { Meta, StoryObj } from "@storybook/react"; import ShortcutSequence from "."; type Props = ComponentProps; export default { component: ShortcutSequence } as Meta; export const Default: StoryObj = { args: { action: "do something", text: "alt+Q" } };