This commit is contained in:
Tommy Parnell
2018-09-18 11:09:19 -04:00
commit 1898eb4b46
51 changed files with 29675 additions and 0 deletions

13
helloworld/src/App.js Normal file
View File

@@ -0,0 +1,13 @@
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import HelloWorld from './HelloWorld';
class App extends Component {
render() {
return (
<HelloWorld message="Hello React!" />
);
}
}
export default App;