Skip to content

Commit

Permalink
build: add LandingPage Storybook stories
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed Feb 20, 2024
1 parent c1bf2ea commit 2ea4b90
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/pages/LandingPage/LandingPage.stories.tsx
Original file line number Diff line number Diff line change
@@ -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<typeof LandingPage>;

export default meta;

///////////////////////////////////////////////////////////
// STORIES

type Story = StoryObj<typeof meta>;

export const BasicDemo = {} satisfies Story;

0 comments on commit 2ea4b90

Please sign in to comment.