BAEL-4842 - Use React and Spring Boot to Build a Simple CRUD App

Initial source module for the article
This commit is contained in:
Sallo Szrajbman
2021-03-28 17:00:33 +01:00
parent d1d6cafac1
commit 6a82efdd39
30 changed files with 17577 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import 'bootstrap/dist/css/bootstrap.min.css';
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();