Test and check the BookShelf App by invoking the following:
// inside of vscode terminal
$npm run dev
Before we start making a new component, open App.jsx file and delete initial code created when initiated the new project except for the main App() function block.
// App.jsx template
/** @format */
/**
* NOTE:::
* This is the code that would go into the project's main App.jsx
* I put it here so that the main App.jsx is clean
* as we are building other, small components throughout the
* course.
*
*/
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';
import { useState } from 'react';
```javascriptreact
function App() {
...
return (
<>
...
</>
)
}
export default App;