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;


No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Toast plugin for Next.js

 https://sonner.emilkowal.ski/