Reorganize src files

This commit is contained in:
Greg Shuflin 2021-09-12 00:05:07 -07:00
parent 232bdd1718
commit 188abe2b93
4 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
import React from "react"; import React from "react";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import App from "./App.jsx"; import App from "./src/App.jsx";
console.log("Starting..");
const root = document.getElementById("root"); const root = document.getElementById("root");
ReactDOM.render(<App />, root); ReactDOM.render(<App />, root);