From ad8e6218bc3a9c7bd2292034f8e14f85551a543e Mon Sep 17 00:00:00 2001 From: BettinaHallinger Date: Thu, 17 Mar 2022 09:33:39 +0100 Subject: [PATCH] React und Tailwind aufgesetzt --- src/index.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/index.js diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..ef2edf8 --- /dev/null +++ b/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +ReactDOM.render( + + + , + document.getElementById('root') +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals();