You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
390 B
18 lines
390 B
import { Link } from 'react-router-dom'
|
|
|
|
import { PAGES } from 'config/pages'
|
|
|
|
import { Search } from 'features/Search'
|
|
import { Menu } from 'features/Menu'
|
|
|
|
import { HeaderGroup, HeaderLogo } from './styled'
|
|
|
|
export const HeaderMenu = () => (
|
|
<HeaderGroup>
|
|
<Search />
|
|
<Link to={PAGES.home} id='general_main_page'>
|
|
<HeaderLogo />
|
|
</Link>
|
|
<Menu />
|
|
</HeaderGroup>
|
|
)
|
|
|