-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(profile-overview): 🎉 add profile overview component
- Loading branch information
1 parent
a3416fb
commit c9f4e0e
Showing
2 changed files
with
26 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React, { Fragment, ReactElement } from "react"; | ||
import ProfileInfo from "../ProfileInfo/ProfileInfo"; | ||
import ProfileChangePassword from "../ProfileChangePassword/ProfileChangePassword"; | ||
import ProfileEmailPreferances from "../ProfileEmailPreferances/ProfileEmailPreferances"; | ||
import ProfileConnectedApps from "../ProfileConnectedApps/ProfileConnectedApps"; | ||
import ProfileNotifications from "../ProfileNotifications/ProfileNotifications"; | ||
import ProfileDeactive from "../ProfileDeactive/ProfileDeactive"; | ||
|
||
export default function ProfileOverview(): ReactElement { | ||
return ( | ||
<Fragment> | ||
<div className="col-span-1 flex flex-col gap-6"> | ||
<ProfileInfo className="col-span-1" /> | ||
<ProfileChangePassword className="col-span-1" /> | ||
<ProfileEmailPreferances className="col-span-1" /> | ||
</div> | ||
<div className="col-span-1 flex flex-col gap-6"> | ||
<ProfileConnectedApps className="col-span-1" /> | ||
<ProfileNotifications className="col-span-1" /> | ||
<ProfileDeactive className="col-span-1" /> | ||
</div> | ||
</Fragment> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters