From a069307fa82e509f8dbcadb9c3d0eced753d2fab Mon Sep 17 00:00:00 2001 From: Max Chopart Date: Tue, 8 Nov 2022 10:42:50 +0100 Subject: [PATCH] [Fix #193] Add intl to comment form story --- src/stories/CommentForm.stories.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/stories/CommentForm.stories.tsx b/src/stories/CommentForm.stories.tsx index 450e066e..7030e104 100644 --- a/src/stories/CommentForm.stories.tsx +++ b/src/stories/CommentForm.stories.tsx @@ -1,5 +1,6 @@ import React from "react"; import { ComponentMeta, ComponentStory } from "@storybook/react"; +import { ConfigurationContextProvider } from "../contexts/ConfigurationContext"; import CommentForm from "../components/comment/CommentForm"; @@ -12,7 +13,19 @@ const Template: ComponentStory = ( args, { globals: { locale } } ) => { - ; + return ( + <> + + + + + ); }; export const Default = Template.bind({});