//@flow import React from "react"; type Props = { label: string, action: () => void }; class NavAction extends React.Component { render() { const { label, action } = this.props; return (
  • {label}
  • ); } } export default NavAction;