-
Notifications
You must be signed in to change notification settings - Fork 0
/
defaultProps.js
54 lines (40 loc) · 1.03 KB
/
defaultProps.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// componente una propiedad llamada defaultProps
class Example extends React.Component {
render() {
return <h1>{this.props.text}</h1>;
}
}
Example.defaultProps;
// La defaultPropspropiedad debe ser igual a un objeto:
class Example extends React.Component {
render() {
return <h1>{this.props.text}</h1>;
}
}
// Set defaultProps equal to an object:
Example.defaultProps = {};
// Dentro de este objeto, escriba propiedades para cualquier valor predeterminado propsque desee establecer
class Example extends React.Component {
render() {
return <h1>{this.props.text}</h1>;
}
}
Example.defaultProps = { text: 'yo' };
// Example
import React from 'react';
import ReactDOM from 'react-dom';
class Button extends React.Component {
render() {
return (
<button>
{this.props.text}
</button>
);
}
}
// defaultProps goes here:
Button.defaultProps = { text : 'I am a button' }
ReactDOM.render(
<Button />,
document.getElementById('app')
);