18 lines
371 B
TypeScript
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;
|