Skip to content

Commit 994876c

Browse files
authored
Merge pull request #7 from dempah14/Landons-Branch
Landons branch
2 parents 96a75e9 + 200a9a5 commit 994876c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

‎src/components/app.js‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
import React, { Component } from 'react';
22
import Alex from './alex'
3+
<<<<<<< HEAD
4+
<<<<<<< HEAD
5+
import Landon from './landon'
6+
=======
7+
=======
38
import Paola from './Paola'
9+
>>>>>>> 96a75e9d6dc1b4afe2dc0a8aa432e6c65d93c573
410
import Jared from './jared'
511
import Josh from './josh'
12+
>>>>>>> f6eb50240b5e773dd29bb94a75e5f37a41db9347
613

714
class App extends Component {
815
render() {
916
return (
1017
<div>
1118
<h1>React Simple Starter</h1>
1219
<Alex />
20+
<<<<<<< HEAD
21+
<<<<<<< HEAD
22+
<Landon />
23+
=======
24+
=======
1325

1426
<Paola/>
1527

28+
>>>>>>> 96a75e9d6dc1b4afe2dc0a8aa432e6c65d93c573
1629
<Jared />
1730

1831
<Josh/>
32+
>>>>>>> f6eb50240b5e773dd29bb94a75e5f37a41db9347
1933
</div>
2034
);
2135
}

‎src/components/landon.js‎

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

0 commit comments

Comments
 (0)