-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add template header when switching account
- Loading branch information
1 parent
a8ffbaa
commit 1d9d351
Showing
3 changed files
with
20 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,16 @@ | ||
import React from 'react'; | ||
|
||
const TemplateHeader = () => ( | ||
<div id='template_header' className='header'> | ||
<div className='header__menu-items'> | ||
<div className='header__menu-left'> | ||
<div id='platform__switcher' className='header__menu-item platform__switcher mobile-hide'> | ||
<img className='header__logo' /> | ||
<img id='platform__switcher-expand' className='header__icon header__expand' /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default TemplateHeader; |