From 4cf05246cc24daa82606f0a5c5d6cc0bfd4f92e2 Mon Sep 17 00:00:00 2001 From: hemahg Date: Wed, 16 Oct 2024 17:43:49 +0530 Subject: [PATCH] fix story Signed-off-by: hemahg --- .../ClusterOverview/ClusterCard.stories.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ui/components/ClusterOverview/ClusterCard.stories.tsx b/ui/components/ClusterOverview/ClusterCard.stories.tsx index a085c0b71..e3447e14d 100644 --- a/ui/components/ClusterOverview/ClusterCard.stories.tsx +++ b/ui/components/ClusterOverview/ClusterCard.stories.tsx @@ -1,9 +1,22 @@ import type { Meta, StoryObj } from "@storybook/react"; import { ClusterCard } from "./ClusterCard"; +import { ReconciliationContext } from "../ReconciliationContext"; const meta: Meta = { component: ClusterCard, + decorators: [ + (Story) => ( + { } + }} + > + + + ) + ] }; export default meta;