Portfolio/Websites/jefes-nextjs/app/gallery/page.tsx
2023-11-06 19:31:43 -08:00

18 lines
371 B
TypeScript

"use client";
import React from "react";
import { useState } from "react";
import { BsChevronCompactLeft, BsChevronCompactRight } from "react-icons/bs";
import { RxDotFilled } from "react-icons/rx";
import { EmblaCarousel } from "./carousel";
const Gallery = () => {
return (
<div className="">
<EmblaCarousel />
</div>
);
};
export default Gallery;