diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-11-27 15:39:34 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-11-29 02:59:54 +0800 |
commit | 7a726e2740b8cbc885229ed377ef5fc89502301d (patch) | |
tree | 3cea30517547f8b3afa91e7da700483e05f76812 /packages/website/ts/containers | |
parent | 53f8e1b3b426424bf4459605b48e706eb7fb6d90 (diff) | |
download | dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.gz dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.bz2 dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.lz dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.xz dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.zst dexon-sol-tools-7a726e2740b8cbc885229ed377ef5fc89502301d.zip |
feat(website): scaffolding for instant page
Diffstat (limited to 'packages/website/ts/containers')
-rw-r--r-- | packages/website/ts/containers/instant.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/website/ts/containers/instant.ts b/packages/website/ts/containers/instant.ts new file mode 100644 index 000000000..9bcfb903b --- /dev/null +++ b/packages/website/ts/containers/instant.ts @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { connect } from 'react-redux'; +import { Dispatch } from 'redux'; +import { Instant as InstantComponent, InstantProps } from 'ts/pages/instant/instant'; +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: InstantProps): ConnectedState => ({ + translate: state.translate, +}); + +const mapDispatchToProps = (dispatch: Dispatch<State>): ConnectedDispatch => ({ + dispatcher: new Dispatcher(dispatch), +}); + +export const Instant: React.ComponentClass<InstantProps> = connect(mapStateToProps, mapDispatchToProps)( + InstantComponent, +); |