Skip to content

Instantly share code, notes, and snippets.

@caelinsutch
Created February 1, 2021 23:20
Show Gist options
  • Save caelinsutch/dd3e8635001976691b459af632b601a1 to your computer and use it in GitHub Desktop.
Save caelinsutch/dd3e8635001976691b459af632b601a1 to your computer and use it in GitHub Desktop.
Default Props
// Don't define the default props outside of the function
const Component = ({ title, subtitle, text}) => {
return <div>..</div>
}
Component.defaultProps = {
title: 'Default Title',
subtitle: 'Generic Subtitle',
text: ''
}
// Put default props inside of the destructuring statement
const Component = ({
title: 'Default Title',
subtitle: 'Generic Subtitle',
text: '',
}) => {
return <div>...</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment