Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 405 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 405 Bytes

Default It (React)

When you define propTypes for your component you will probably want to write defaultProps. Sometime it's very annoying...

MyComponent.defaultProps = {
  someString: '',
  someFunction: () => {},
  someNumber: 0,
  /// etc
}

And... Default It can help you with it! Just select your propTypes and run "Generate defaultProps"!

Default It