Fixing yes/no dialog. Fix AppDelegate for navigation
This commit is contained in:
@@ -4,7 +4,16 @@ import { Row, Column, PanelButton } from 'ui'
|
||||
|
||||
export class Home extends Component {
|
||||
static propTypes = {
|
||||
history: PropTypes.object
|
||||
history: PropTypes.object,
|
||||
onChangeTitle: PropTypes.func.isRequired,
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.props.onChangeTitle('Home')
|
||||
}
|
||||
|
||||
componentDidUnmount() {
|
||||
this.props.onChangeTitle('')
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
Reference in New Issue
Block a user