changed step names

This commit is contained in:
Micah Godbolt
2019-02-14 10:15:39 -08:00
parent d0d6a788e2
commit 41a79e8883
34 changed files with 16 additions and 14 deletions

8
step1-04/index.html Normal file
View File

@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<div id="app"></div>
</body>
</html>

13
step1-04/src/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
export class App extends React.Component {
render() {
return (
<div>
</div>
);
}
}

4
step1-04/src/index.tsx Normal file
View File

@@ -0,0 +1,4 @@
import React from "react";
import ReactDOM from "react-dom";
import { App } from "./App";
ReactDOM.render(<App />, document.getElementById("app"));