There was an error while loading. Please reload this page.
2 parents e544b24 + 994876c commit 9535706Copy full SHA for 9535706
src/components/app.js
@@ -2,6 +2,7 @@ import React, { Component } from 'react';
2
import Alex from './alex'
3
import Saundra from './saundra'
4
5
+import Landon from './landon'
6
import Paola from './Paola'
7
import Jared from './jared'
8
import Josh from './josh'
@@ -13,6 +14,7 @@ import Josh from './josh'
13
14
<h1>React Simple Starter</h1>
15
<Alex />
16
<Saundra />
17
+ <Landon />
18
19
<Paola/>
20
src/components/landon.js
@@ -0,0 +1,9 @@
1
+import React, { Component } from 'react';
+
+ export default class Landon extends Component {
+ render() {
+ return (
+ <div>Landon</div>
+ );
+ }
9
+}
0 commit comments