Initial config

This commit is contained in:
Jorik Schellekens
2020-06-01 14:42:30 +01:00
parent bfbb712fc2
commit b6f55c6011
8 changed files with 11911 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from "react";
import "./App.css";
function App() {
return <div className="App"></div>;
}
export default App;
+11
View File
@@ -0,0 +1,11 @@
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
+1
View File
@@ -0,0 +1 @@
/// <reference types="react-scripts" />