From 6a492df9ebb270afee94d0f8db596a7e887e631e Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Sun, 27 Sep 2020 23:14:18 +0100 Subject: Initialize project using Create React App --- src/index.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/index.tsx (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..f5185c1 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import App from './App'; +import * as serviceWorker from './serviceWorker'; + +ReactDOM.render( + + + , + document.getElementById('root') +); + +// If you want your app to work offline and load faster, you can change +// unregister() to register() below. Note this comes with some pitfalls. +// Learn more about service workers: https://bit.ly/CRA-PWA +serviceWorker.unregister(); -- cgit v1.2.3