import type { Meta, StoryObj } from "@storybook/react"; import Component from "./InfoPage"; import InfoPage from "./InfoPage"; const meta: Meta = { title: "Components/InfoPage", component: Component, }; export default meta; type Story = StoryObj; export const Default: Story = { render: () => (

Section

This is example content for the info page.

), args: {}, };