Family Tab Sizes Fixed

This commit was merged in pull request #353.
This commit is contained in:
2023-07-25 08:53:04 +01:00
parent b69e2ff53b
commit 16afd4f90c
7 changed files with 76 additions and 42 deletions
@@ -1,3 +1,11 @@
export default function FamilyProfile() {
return <>Profile</>;
}
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>
);
}