From 2ea4b90f671e05fa40fdb1a4b60f1ba36101b245 Mon Sep 17 00:00:00 2001 From: trevor-anderson Date: Tue, 20 Feb 2024 12:40:30 -0500 Subject: [PATCH] build: add LandingPage Storybook stories --- src/pages/LandingPage/LandingPage.stories.tsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/pages/LandingPage/LandingPage.stories.tsx diff --git a/src/pages/LandingPage/LandingPage.stories.tsx b/src/pages/LandingPage/LandingPage.stories.tsx new file mode 100644 index 00000000..545e9bf2 --- /dev/null +++ b/src/pages/LandingPage/LandingPage.stories.tsx @@ -0,0 +1,21 @@ +import { withRootAppLayoutDecorator } from "@/../.storybook/decorators"; +import { LandingPage } from "./LandingPage"; +import type { Meta, StoryObj } from "@storybook/react"; + +const meta = { + title: "Pages/LandingPage", + component: LandingPage, + decorators: [withRootAppLayoutDecorator], + parameters: { + layout: "fullscreen", + }, +} satisfies Meta; + +export default meta; + +/////////////////////////////////////////////////////////// +// STORIES + +type Story = StoryObj; + +export const BasicDemo = {} satisfies Story;