I created the component NotFound and it works fine when I go to a page that doesn\'t exist. But the same page it\'s appearing in all my pages, not only the one
NotFound
Try This:
import React from "react"; import { Redirect, Route, Switch, BrowserRouter } from 'react-router-dom'; import HomePage from './pages/HomePage.jsx'; import NotFoundPage from './NotFoundPage.jsx'; class App extends React.Component { render(){ return( ) } } export default App;