I was creating a component of navigation and calling this in app.js but the component is showing an error is navigation is defined but not used. navigation.js screenshot
code of app.js is
import { navigation } from "./components/navigation";
import React from "react";
function App()
{
return(
<>
<navigation/>
</>
)
}
export default App;
All React components should start with a capital letter.
You should change your navigation.js to Navigation.js