mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 03:43:28 +10:00
Remove unused imports
This commit is contained in:
parent
1f4f0c6536
commit
7fb74baaaa
3 changed files with 1 additions and 8 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import React, { PropTypes } from 'react';
|
||||
import { Menu, NamedLink } from '../../components';
|
||||
import { NamedLink } from '../../components';
|
||||
import css from './SearchResultsPanel.css';
|
||||
|
||||
const SearchResultsPanel = props => (
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import React from 'react';
|
|||
import { Field, reduxForm, propTypes as formPropTypes } from 'redux-form';
|
||||
import { FormattedMessage, intlShape, injectIntl } from 'react-intl';
|
||||
import { LocationAutocompleteInput, Button } from '../../components';
|
||||
import { autocompleteSearchRequired, autocompletePlaceSelected } from '../../util/validators';
|
||||
|
||||
import css from './HeroSearchForm.css';
|
||||
|
||||
|
|
|
|||
|
|
@ -12,12 +12,6 @@ const House = () => <span dangerouslySetInnerHTML={{ __html: '🏠' }} />;
|
|||
|
||||
const Topbar = props => {
|
||||
const { isAuthenticated, onLogout, push: historyPush } = props;
|
||||
const hamburger = { dangerouslySetInnerHTML: { __html: '🍔' } };
|
||||
|
||||
const handleChange = e => {
|
||||
const value = e.target.value;
|
||||
historyPush(value);
|
||||
};
|
||||
|
||||
const handleLogout = () => {
|
||||
// History push function is passed to the action to enable
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue