-
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 #14 from dabigjoe6/enhance-frequency
Create header
- Loading branch information
Showing
5 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 @@ | ||
import * as React from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
import logo from '../assets/logo.png'; | ||
|
||
import SettingsBtn from './settings-button'; | ||
|
||
interface HeaderProps { | ||
showSettingsModal: () => void; | ||
} | ||
|
||
const Container = styled.div` | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
padding-right: 5px; | ||
padding-left: 5px; | ||
margin-bottom: 20px; | ||
`; | ||
|
||
const Image = styled.img` | ||
object-fit: center; | ||
cursor: pointer; | ||
`; | ||
|
||
|
||
const Header = ({ showSettingsModal }: HeaderProps) => { | ||
const handleLogoClick = () => { | ||
window.open("https://synthesisapp.com") | ||
} | ||
return (<Container> | ||
<Image src={logo} alt="Synthesis logo" width={20} onClick={handleLogoClick} /> | ||
<SettingsBtn onClick={showSettingsModal} /> | ||
</Container>) | ||
}; | ||
|
||
export default Header; |
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