Skip to content

Instantly share code, notes, and snippets.

@decpk
Created January 28, 2021 07:53
Show Gist options
  • Select an option

  • Save decpk/7c6f5a900edfd00280d675059140ae9c to your computer and use it in GitHub Desktop.

Select an option

Save decpk/7c6f5a900edfd00280d675059140ae9c to your computer and use it in GitHub Desktop.
Default props in ES6 classes
import React, { Component } from 'react';
import App from './App';
class App extends Component {
render() {
return (
<h1>Hello {this.props.message}</h1>
);
}
}
App.defaultProps = {
message: 'world from default props'
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment