jmurzy/react-router-native

Is it possible to use es6 class syntax for component definition?

xahon opened this issue · 0 comments

xahon commented

Can i rewrite that

const HomeHeader = withRouter((props) => {
  const handleRightButtonPress = () => {
    props.router.push('/detail/gray');
  };

  return (
    <Header
      {...props}
      style={{ backgroundColor: '#26BBE5' }}
      title="Feed"
      rightButtonText="Gray"
      onRightButtonPress={handleRightButtonPress}
    />
  );
});

as es6 class?