-
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.
refactor(dashboards): 🎉 update imports and dashoards
- Loading branch information
1 parent
7af675d
commit f2b3a00
Showing
13 changed files
with
73 additions
and
112 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
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
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
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
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
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
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
6 changes: 3 additions & 3 deletions
6
...shboardPage/OrganizationDashboardPage.tsx → ...hboardsPage/OrgDashboard/OrgDashboard.tsx
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
5 changes: 0 additions & 5 deletions
5
src/pages/DashboardsPage/PhysicalInstancesDashboardPage/PhysicalInstancesDashboardPage.tsx
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
import React, { ReactElement } from "react"; | ||
import ProfileHeader from "../../components/ProfileHeader/ProfileHeader"; | ||
import ProfileSubPageLayout from "../../layouts/ProfileSubPageLayout"; | ||
import ProfileContext from "../../contexts/ProfileContext"; | ||
import React, { ReactElement } from "react"; | ||
|
||
export default function Profile(): ReactElement { | ||
return ( | ||
<div className="grid grid-cols-2 gap-6"> | ||
<ProfileHeader /> | ||
<ProfileSubPageLayout /> | ||
</div> | ||
<ProfileContext> | ||
<div className="grid grid-cols-2 gap-6"> | ||
<ProfileHeader /> | ||
<ProfileSubPageLayout /> | ||
</div> | ||
</ProfileContext> | ||
); | ||
} |
Oops, something went wrong.