aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/containers/not_found.ts
blob: 825c021ec7c5162396818016782b139404a6ed06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import * as React from 'react';
import { connect } from 'react-redux';
import { Dispatch } from 'redux';
import { NotFound as NotFoundComponent, NotFoundProps } from 'ts/pages/not_found';
import { Dispatcher } from 'ts/redux/dispatcher';
import { State } from 'ts/redux/reducer';
import { Translate } from 'ts/utils/translate';

interface ConnectedState {
    translate: Translate;
}

interface ConnectedDispatch {
    dispatcher: Dispatcher;
}

const mapStateToProps = (state: State, _ownProps: NotFoundProps): ConnectedState => ({
    translate: state.translate,
});

const mapDispatchToProps = (dispatch: Dispatch<State>): ConnectedDispatch => ({
    dispatcher: new Dispatcher(dispatch),
});

export const NotFound: React.ComponentClass<NotFoundProps> = connect(
    mapStateToProps,
    mapDispatchToProps,
)(NotFoundComponent);