introduicing swiper gameslid component

This commit is contained in:
Antoine M 2024-03-18 11:14:09 +01:00
parent febb125b2e
commit ab577bfcb9

View File

@ -0,0 +1,5 @@
import { Swiper, SwiperSlide } from "swiper/react";
export default function GameSlide({ children }) {
return <SwiperSlide>{children}</SwiperSlide>;
}