Fixing last couple of auth dialogs

This commit is contained in:
John Lyon-Smith
2018-03-24 10:53:34 -07:00
parent ce25d56dfe
commit cb708c720f
16 changed files with 312 additions and 274 deletions

View File

@@ -6,15 +6,15 @@ import { sizeInfo } from 'ui/style'
export class Home extends Component {
static propTypes = {
history: PropTypes.object,
onChangeTitle: PropTypes.func.isRequired,
changeTitle: PropTypes.func.isRequired,
}
componentDidMount() {
this.props.onChangeTitle('Home')
this.props.changeTitle('Home')
}
componentWillUnmount() {
this.props.onChangeTitle('')
this.props.changeTitle('')
}
render() {