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
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
export class App extends React.Component {
render() {
return (
<div>
</div>
);
}
}
+4
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"));