dishplanner/frontend-old/app/components/layout/Card.tsx

15 lines
287 B
TypeScript
Raw Permalink Normal View History

2025-11-09 13:09:22 +01:00
import React from "react";
interface Props {
children: React.ReactNode;
}
2025-11-09 13:09:22 +01:00
const Card = ({ children }: Props) => {
return (
<div className="w-full border-2 border-secondary p-2 pl-4 my-2 rounded flex">
{ children }
</div>
)
}
export default Card