Skip to content

Commit

Permalink
fixed stories
Browse files Browse the repository at this point in the history
  • Loading branch information
mertbagt committed Dec 6, 2024
1 parent 9dbedfe commit 239e58f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stories_hold/organisms/newsfeed/NewsfeedCard.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { ComponentStory } from "@storybook/react"
import React, { useState } from "react"
import { createMeta } from "stories/utils"
import { NewsfeedBillCard } from "components/NewsfeedCard/NewsfeedCard"
import { NewsfeedCard } from "components/NewsfeedCard/NewsfeedCard"
import { Timestamp } from "firebase/firestore"

export default createMeta({
title: "Dashboard/Newsfeed/NewsfeedCard",
component: NewsfeedBillCard
component: NewsfeedCard
})

const Template: ComponentStory<typeof NewsfeedBillCard> = props => {
return <NewsfeedBillCard {...props} />
const Template: ComponentStory<typeof NewsfeedCard> = props => {
return <NewsfeedCard {...props} />
}

export const OrgWithBodyImage = Template.bind({})
Expand Down

0 comments on commit 239e58f

Please sign in to comment.