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.
31 lines
647 B
31 lines
647 B
import { Fragment } from 'react'
|
|
import { Link } from 'react-router-dom'
|
|
|
|
import { PAGES } from 'config'
|
|
|
|
import { Logo } from 'features/Logo'
|
|
import { Menu } from 'features/Menu'
|
|
|
|
import {
|
|
HeaderMobileWrapper,
|
|
HeaderIconsWrapper,
|
|
IconFavWrapper,
|
|
} from 'features/HeaderMobile/styled'
|
|
|
|
import { Filters } from '../Filters'
|
|
|
|
export const MobileHeader = () => (
|
|
<Fragment>
|
|
<HeaderMobileWrapper>
|
|
<Link to={PAGES.home}>
|
|
<Logo width={52} height={12} />
|
|
</Link>
|
|
<HeaderIconsWrapper>
|
|
<IconFavWrapper />
|
|
<Menu />
|
|
</HeaderIconsWrapper>
|
|
</HeaderMobileWrapper>
|
|
|
|
<Filters />
|
|
</Fragment>
|
|
)
|
|
|