There was an error while loading. Please reload this page.
1 parent 969262a commit 017aa56Copy full SHA for 017aa56
src/components/app.js
@@ -1,12 +1,14 @@
1
import React, { Component } from 'react';
2
import Alex from './alex'
3
+import Jared from './jared'
4
5
class App extends Component {
6
render() {
7
return (
8
<div>
9
<h1>React simple starter</h1>
10
<Alex />
11
+ <Jared />
12
</div>
13
);
14
}
src/components/jared.js
@@ -0,0 +1,9 @@
+import React, { Component } from 'react';
+
+ export default class Jared extends Component {
+ render() {
+ return (
+ <div>Jared</div>
+ );
+ }
+}
0 commit comments