Portfolio/Websites/jefes-nextjs/app/gallery/page.tsx
2023-11-07 21:30:33 -08:00

17 lines
357 B
TypeScript

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;