Guest User

Untitled

a guest
Mar 17th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. const EmptyProps = ({ history }) => (
  2. <div className={styles.body}>
  3. <div className={styles.cta}>
  4. <FloatingActionButton onClick={() => history.push(routes[4].path)}>
  5. <ContentAdd />
  6. </FloatingActionButton>
  7. </div>
  8. </div>
  9. );
  10.  
  11. interface Props {
  12. history: {
  13. push(url: string): void;
  14. };
  15. }
Add Comment
Please, Sign In to add comment