diff options
author | dan <[email protected]> | 2023-08-27 18:02:16 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-08-27 18:02:16 -0400 |
commit | f8cf6c21d238fea96192ad3f418ab7489092355f (patch) | |
tree | f63935892c34f4873b05e8346c6393bacf1b6151 /src/index.js | |
download | draggable-form-demo-f8cf6c21d238fea96192ad3f418ab7489092355f.tar.gz draggable-form-demo-f8cf6c21d238fea96192ad3f418ab7489092355f.tar.bz2 draggable-form-demo-f8cf6c21d238fea96192ad3f418ab7489092355f.zip |
Initialize project using Create React App
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..d563c0f --- /dev/null +++ b/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + <React.StrictMode> + <App /> + </React.StrictMode> +); + +// 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(); |