Skip to content

Commit 9f4acaa

Browse files
committed
changes with Josh
2 parents c2665c2 + 48f5ba6 commit 9f4acaa

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

‎src/components/app.js‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ import React, { Component } from 'react';
22
import Alex from './alex'
33
import Saundra from './saundra'
44

5+
import Josh from './josh'
56
class App extends Component {
67
render() {
78
return (
89
<div>
910
<h1>React simple starter</h1>
1011
<Alex />
1112
<Saundra />
13+
<Josh/>
1214
</div>
1315
);
1416
}

‎src/components/josh.js‎

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React, { Component } from 'react';
2+
3+
class Josh extends Component {
4+
render() {
5+
return (
6+
<div>
7+
Joshua
8+
</div>
9+
);
10+
}
11+
}
12+
13+
export default Josh

0 commit comments

Comments
 (0)