Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import styles from './{{pascalCase name}}.module.css';
  4.  
  5. const {{pascalCase name}} = props => {
  6. return (
  7. <div className={styles.root}>
  8. </div>
  9. );
  10. };
  11.  
  12. {{pascalCase name}}.defaultProps = {
  13.  
  14. };
  15.  
  16. {{pascalCase name}}.propTypes = {
  17.  
  18. };
  19.  
  20. export default {{pascalCase name}};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement