From 814a57866cb3dbc40e0c80ce6c27a8d254c1746d Mon Sep 17 00:00:00 2001 From: Marie Holen Danielson Date: Fri, 4 Sep 2026 11:34:29 +0200 Subject: [PATCH] Lagt til statisk FavoriteButton-komponent --- src/components/FavoriteButton.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/components/FavoriteButton.tsx diff --git a/src/components/FavoriteButton.tsx b/src/components/FavoriteButton.tsx new file mode 100644 index 0000000..34d3cb5 --- /dev/null +++ b/src/components/FavoriteButton.tsx @@ -0,0 +1,14 @@ +type FavoriteButtonProps = { + isFavorite: boolean +} + +export function FavoriteButton({ isFavorite }: FavoriteButtonProps) { + return ( + + ) +} \ No newline at end of file