12 lines
349 B
TypeScript
12 lines
349 B
TypeScript
import { Item } from "@prisma/client";
|
|
|
|
export default function MenuCard({item}: {item: Item}) {
|
|
return (
|
|
<div className=" border rounded p-3 w-[49%] mb-3">
|
|
<h3 className="font-bold text-lg">{item.name}</h3>
|
|
<p className="font-light mt-1 text-sm">{item.description}</p>
|
|
<p className="mt-7">{item.price}</p>
|
|
</div>
|
|
);
|
|
}
|