Chapter 9
- You can find React components from multiple sources—for example, https://js.coach/ or https://github.com/brillout/awesome-react-components.
- You can install React components using the
npm
oryarn
package managers. If you are using npm, use thenpm install <package_name>
command. - First, you have to install the Ag-grid component. After the installation, you can use the
AgGridReact
component in your component. You have to define the data and the columns using theAgGridReact
component props. The data can be an array of objects. - First, you have to install the MUI component library. After the library is installed, you can start to use components. The documentation of the different components can be found at https://mui.com.
- Routing can be implemented using the React Router component, which can be found at https://github.com/ReactTraining/react-router.