chore(site): add stories to 404 page (#12470)

Related to https://github.com/coder/coder/issues/12263
This commit is contained in:
Bruno Quaresma
2024-03-11 10:36:06 -03:00
committed by GitHub
parent b1ecc53033
commit cd64e981b4
@@ -0,0 +1,13 @@
import type { Meta, StoryObj } from "@storybook/react";
import NotFoundPage from "./404Page";
const meta: Meta<typeof NotFoundPage> = {
title: "components/NotFoundPage",
component: NotFoundPage,
};
export default meta;
type Story = StoryObj<typeof NotFoundPage>;
const Example: Story = {};
export { Example as NotFoundPage };