Open itsmeha329 opened 2 months ago
Here is the diff to update the title of the app in src/App.js
to "CRUD Application for XYZ Company":
--- src/App.js
+++ src/App.js
@@ ... @@
function App() {
return (
<div className="App">
- <h1 className="geeks">Basic CRUD App </h1>
+ <h1 className="geeks">CRUD Application for XYZ Company</h1>
<h3>CRUD App</h3>
<Router>
<Routes>
Here is the diff to update the title of the application in the public/index.html
file:
--- public/index.html
+++ public/index.html
@@ ... @@
- <title>CRUD Application for XYZ Company</title>
+ <title>CRUD Application for XYZ Company</title>
This change updates the title as requested.
change the title of the app to "CRUD Application for XYZ Company".