Files
Users-Wrench/src/components/FamilyAcc/Tabs/FamilyProfile.jsx
T
2023-07-25 08:53:04 +01:00

12 lines
289 B
React

export default function FamilyProfile({ className }) {
return (
<div
className={`update-table w-full bg-white dark:bg-dark-white overflow-hidden rounded-2xl section-shadow lg:min-h-[538px] p-3 ${
className || ""
}`}
>
<h1>Profile</h1>
</div>
);
}