File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -99,16 +99,12 @@ typings install --ambient --save react-dom
99
99
import * as React from " react" ;
100
100
import * as ReactDOM from " react-dom" ;
101
101
102
- class HelloComponent extends React .Component <any , any > {
102
+ export class HelloComponent extends React .Component <any , any > {
103
103
render() {
104
104
return <h1 >Hello from {this.props.compiler } and {this.props.framework }! < / h1 > ;
105
105
}
106
106
}
107
107
108
- ReactDOM .render (
109
- < HelloComponent / > ,
110
- document .getElementById (" example" )
111
- );
112
108
```
113
109
114
110
注意一点这个例子已经很像类了,我们不再需要使用类。
@@ -120,10 +116,10 @@ ReactDOM.render(
120
116
import * as React from " react" ;
121
117
import * as ReactDOM from " react-dom" ;
122
118
123
- import { Hello } from " ./components/Hello" ;
119
+ import { HelloComponent } from " ./components/Hello" ;
124
120
125
121
ReactDOM .render (
126
- < Hello compiler = " TypeScript" framework = " React" / > ,
122
+ < HelloComponent compiler = " TypeScript" framework = " React" / > ,
127
123
document .getElementById (" example" )
128
124
);
129
125
```
You can’t perform that action at this time.
0 commit comments