diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-16 22:20:43 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-16 22:20:43 +0530 |
commit | f227adee3cff445288bdba66d369a451aa31b58e (patch) | |
tree | efa10970f366b9aa8628b5da656f17ec75b0a901 /src/index.js | |
parent | 034a41ad44144e79c1c58a3b4f8741ddf8d56f8c (diff) |
using useState to update array of items to be added in the invoice now
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/index.js b/src/index.js index c096aa7..e63e07e 100644 --- a/src/index.js +++ b/src/index.js @@ -1,24 +1,6 @@ -import React from 'react'; +// import React from 'react'; import ReactDOM from 'react-dom'; import "./styles/global.css" import App from "./components/App"; ReactDOM.render(App(), document.getElementById("root")) - - -// auto generated code -// import './index.css'; -// import App from './App'; -// import reportWebVitals from './reportWebVitals'; - -// ReactDOM.render( -// <React.StrictMode> -// <App /> -// </React.StrictMode>, -// 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(); |