-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated readme & package and fixes for issue 231,233 etc (#258)
* removing font option from Sub-menubar * Update Readme and email id in package.json * Fixed the wrapping issue with Layout * Fixed window title issue
- Loading branch information
Showing
8 changed files
with
65 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
import Profile from '@/modules/projects/Profile'; | ||
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider'; | ||
import ProjectContextProvider from '@/components/context/ProjectContext'; | ||
import Meta from '../src/Meta'; | ||
|
||
const profile = () => ( | ||
<AuthenticationContextProvider> | ||
<Profile /> | ||
</AuthenticationContextProvider> | ||
<> | ||
<Meta /> | ||
<AuthenticationContextProvider> | ||
<ProjectContextProvider> | ||
<Profile /> | ||
</ProjectContextProvider> | ||
</AuthenticationContextProvider> | ||
</> | ||
); | ||
|
||
export default profile; |
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