Skip to content

Commit

Permalink
docs: add broken Card story
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Jul 21, 2023
1 parent 1912ae6 commit 1831fcc
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Card } from "./Card"

const meta: Meta<typeof Card> = {
component: Card,
}

export default meta

type Story = StoryObj<typeof Card>

export const Primary: Story = {
args: {
slug: "test-project",
title: "Test Project",
question: "Test Question?",
status: "open",
agency: "Sample Agency",
topics: [{ slug: "topic", title: "Topic" }],
},
}
// opportunityCloses: Date("2022-03-04"),
// startDate: "2022-01-03",
// endDate: "2022-03-04",
// lastModified: "2022-05-27T16:34:04.000Z",

0 comments on commit 1831fcc

Please sign in to comment.