Skip to content

Instantly share code, notes, and snippets.

View chiucchi's full-sized avatar

Chiucchi chiucchi

  • Belo Horizonte - Minas Gerais
  • 07:22 (UTC -03:00)
View GitHub Profile
@Hachikoi-the-creator
Hachikoi-the-creator / App.tsx
Last active June 15, 2025 17:40 — 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">