From ab577bfcb9e62c760070cf124c1836a67b10f5cf Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 18 Mar 2024 11:14:09 +0100 Subject: [PATCH] introduicing swiper gameslid component --- src/components/Thematiques/GameSlide.jsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/components/Thematiques/GameSlide.jsx diff --git a/src/components/Thematiques/GameSlide.jsx b/src/components/Thematiques/GameSlide.jsx new file mode 100644 index 0000000..c895a71 --- /dev/null +++ b/src/components/Thematiques/GameSlide.jsx @@ -0,0 +1,5 @@ +import { Swiper, SwiperSlide } from "swiper/react"; + +export default function GameSlide({ children }) { + return {children}; +}