All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m7s
10 lines
187 B
TypeScript
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>
|
|
);
|
|
}
|