Create Footer story

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-16 12:23:22 +01:00
parent 71ae5f0f90
commit e24ec61957
+21
View File
@@ -0,0 +1,21 @@
import { JSX } from "react";
import { MemoryRouter } from "react-router";
import Footer from "../components/Footer/Footer";
export default {
title: "Layout/Footer",
component: Footer,
parameters: {
layout: "fullscreen",
},
tags: ["autodocs"],
decorators: [
(Story: () => JSX.Element) => (
<MemoryRouter>
<Story />
</MemoryRouter>
),
],
};
export const Default = {};