diff --git a/site/src/pages/404Page/404Page.stories.tsx b/site/src/pages/404Page/404Page.stories.tsx new file mode 100644 index 0000000000..8a20b1301c --- /dev/null +++ b/site/src/pages/404Page/404Page.stories.tsx @@ -0,0 +1,13 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import NotFoundPage from "./404Page"; + +const meta: Meta = { + title: "components/NotFoundPage", + component: NotFoundPage, +}; + +export default meta; +type Story = StoryObj; + +const Example: Story = {}; +export { Example as NotFoundPage };