ignore folder
This commit is contained in:
14
components/ui/Card.tsx
Normal file
14
components/ui/Card.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
export default function Card({
|
||||
title,
|
||||
children
|
||||
}: {
|
||||
title: string;
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="card page-card">
|
||||
<div className="card-header fw-bold">{title}</div>
|
||||
<div className="card-body">{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user