import { PRICE } from "@prisma/client"; export default function Price({ price }: { price: PRICE }) { const renderPrice = () => { if (price === PRICE.CHEAP) { return ( <> $$$$ ); } if (price === PRICE.REGULAR) { return ( <> $$$$ ); } if (price === PRICE.EXPENSIVE) { return ( <> $$$$ ); } }; return

{renderPrice()}

; }