+ {imgUrl ?
: null}
+
+
{title}
+ {rating ? {Math.round(rating)}/5 : null}
+
+
+ {owner ?
@{owner}
: null}
+
+
+ )
+}
+
+export default RecipeCard
diff --git a/src/stories/recipe-card/RecipeCard.stories.ts b/src/stories/recipe-card/RecipeCard.stories.ts
new file mode 100644
index 0000000..e1bb6db
--- /dev/null
+++ b/src/stories/recipe-card/RecipeCard.stories.ts
@@ -0,0 +1,20 @@
+import type { Meta, StoryObj } from '@storybook/react'
+import RecipeCard from '../../components/recipe-card/RecipeCard'
+
+const meta = {
+ title: 'RecipeCard',
+ component: RecipeCard
+} satisfies Meta