mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 20:53:24 +10:00
Remove unused vars
This commit is contained in:
parent
3406722707
commit
b185637abb
2 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import React, { PropTypes } from 'react';
|
||||
import { Page } from '../../components';
|
||||
|
||||
const EditProfilePage = (props, context) => {
|
||||
const EditProfilePage = props => {
|
||||
const { params } = props;
|
||||
return <Page title={`Edit profile page with display name: ${params.displayName}`} />;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ const InboxPage = props => {
|
|||
|
||||
InboxPage.defaultProps = { filter: 'conversation' };
|
||||
|
||||
const { string, oneOf } = PropTypes;
|
||||
const { oneOf } = PropTypes;
|
||||
|
||||
InboxPage.propTypes = { filter: oneOf([ 'orders', 'sales', 'conversation' ]) };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue