Last active
July 26, 2016 17:56
-
-
Save azizpunjani/afdd933394f8dc50d84ea94250300612 to your computer and use it in GitHub Desktop.
Component format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const propTypes = { | |
... | |
} | |
const defaultProps = { | |
... | |
} | |
export default function MyComponent() { | |
} | |
function someModuleFunction() {...} | |
MyComponent.defaultProps = defaultProps; | |
MyComponent.propTypes = propTypes; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment