Skip to content

Instantly share code, notes, and snippets.

View jacobrymo's full-sized avatar
🐼

Jacob Morrison jacobrymo

🐼
View GitHub Profile
@jacobrymo
jacobrymo / template.jsx
Last active May 26, 2026 03:19
React Tailwind JSX Component
import { cx } from "@/lib/utils";
function Part({ children, className, ...rest }) {
return (
<div
className={cx(
"",
className
)}
{...rest}