From c4943ea71dbb629a3bf7dd5c5c89040e8f0fa989 Mon Sep 17 00:00:00 2001 From: T'JAMPENS QUENTIN p2406187 Date: Mon, 16 Mar 2026 09:57:04 +0100 Subject: [PATCH] Create Loading story --- src/stories/Loading.stories.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/stories/Loading.stories.tsx diff --git a/src/stories/Loading.stories.tsx b/src/stories/Loading.stories.tsx new file mode 100644 index 0000000..c2bc6aa --- /dev/null +++ b/src/stories/Loading.stories.tsx @@ -0,0 +1,14 @@ +import Loading from "../components/ui/Loading/Loading" + + +export default { + title: "UI/Loading", + component: Loading, + parameters: { + layout: "centered", + }, + tags: ['autodocs'], + argTypes: {}, +} + +export const Default = {} \ No newline at end of file