wine-shop/src/app/_components/FormCard.tsx
christian a04ceb616c
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m7s
Fixed add wine form
2024-05-25 14:54:17 +02:00

10 lines
187 B
TypeScript

import CreateWine from "./CreateWine";
export default function FormCard() {
return (
<div className="flex flex-col justify-start shadow-md">
<CreateWine />
</div>
);
}