https://sonner.emilkowal.ski/
Wednesday, May 29, 2024
Sunday, May 19, 2024
Tailwind class usage: example component
import React from "react";
import AddToCard from "../components/AddToCard";
const ProductCard = () => {
return (
<div className="p-5 my-5 bg-sky-400 text-white text-xl hover:bg-sky-500">
<AddToCard />
</div>
);
};
export default ProductCard;
Subscribe to:
Comments (Atom)
Next.js Stack
Next.js 15 / React 19 PostgreSQL Prisma ORM TypeScript, ESLint & Zod ShadCN UI Next Auth React Hook Form Jest Testing Vercel Deployment
-
Next.js 15 / React 19 PostgreSQL Prisma ORM TypeScript, ESLint & Zod ShadCN UI Next Auth React Hook Form Jest Testing Vercel Deployment
-
thead>tr>th*2
-
import React from "react" ; import AddToCard from "../components/AddToCard" ; const ProductCard = () => { ...