Пример #1
0
    componentWillMount() {
        const {dispatch} = this.props;

        dispatch(setTitle('Servers'));
        dispatch(setButtons([
            {link: '/servers', label: 'Servers', active: true}
        ]));

        dispatch(serversList());
    }
Пример #2
0
    componentWillMount() {
        const {dispatch} = this.props;

        dispatch(setTitle('Not Found'));
        dispatch(setButtons([]));
    }