MHF Javascript/React Style Guide
React Components
Favor arrow functions for components
const MyComponent = () => {
...
}Destructure Props
(props) should be ({propName1, propName2})Exports
const MyComponent = () => {
...
}
export default MyComponentComponent Naming
Props Naming
JSDOC
Last updated
Was this helpful?