const mapDispatchToProps = (dispatch: Dispatch<Action>) => {
  return {
    onScroll: scrollTop => {
      dispatch(A.scroll(scrollTop));
    }