Skip to content

Instantly share code, notes, and snippets.

View Hachikoi-the-creator's full-sized avatar
😉
Exited

Adan Moreno Hachikoi-the-creator

😉
Exited
View GitHub Profile
@Hachikoi-the-creator
Hachikoi-the-creator / App.tsx
Last active February 8, 2024 09:07 — forked from nimone/Carousel.jsx
Build a carousel component like instagram purely in ReactJS, TS and TailwindCSS
import Carousel from "./Carousel";
import img1 from "path-to-local-image.jpg";
import img2 from "path-to-local-image.jpg";
import img3 from "path-to-local-image.jpg";
export default function ImageCarousel() {
const slides = [img1, img2, img3];
return (
<div className="relative">