mirror of
https://github.com/coder/coder.git
synced 2026-09-21 20:51:01 +08:00
chore(site): add stories to 404 page (#12470)
Related to https://github.com/coder/coder/issues/12263
This commit is contained in:
@@ -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 };
|
||||
Reference in New Issue
Block a user