Docs
Tweet Grid

Tweet Grid

A masonry grid full of tweets

Installation

npx shadcn@latest add https://cult-ui.com/r/tweet-grid.json

Usage

import { TweetGrid } from "@/components/ui/tweet-grid"
// Grab tweet ids
const exampleTweets = [
  "1742983975340327184",
  "1743049700583116812",
  "1754067409366073443",
  "1753968111059861648",
  "1754174981897118136",
  "1743632296802988387",
  "1754110885168021921",
  "1760248682828419497",
  "1760230134601122153",
  "1760184980356088267",
]
export default function TweetGridDemo() {
  return <TweetGrid tweets={exampleTweets} />
}