move most of the app into a src/app subdir

I think the index stuff was getting too easy to confuse for app code!
This commit is contained in:
Matt Dunn-Rankin 2020-04-25 23:52:20 -07:00
parent 0eae1679aa
commit 01c3f1f2fa
11 changed files with 1 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import React from "react"; import React from "react";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import "./index.css"; import "./index.css";
import App from "./App"; import App from "./app/App";
ReactDOM.render( ReactDOM.render(
<React.StrictMode> <React.StrictMode>
<App /> <App />