-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from mcode/settings-page
Adding settings page
- Loading branch information
Showing
3 changed files
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
function Settings() { | ||
return ( | ||
<div className="max-w-7xl w-full"> | ||
<h1 className="font-sans font-bold text-4xl">Settings</h1> | ||
<hr className="m-2 h-px bg-gray-300 border-0" /> | ||
<h2 className="pt-2 font-sans text-3xl font-semibold">Manage Your mCODE Resources</h2> | ||
<p className="text-sm text-gray-600 pb-2"> | ||
Select which resources you want to be included in the dashboard calculation | ||
</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default Settings; |