(잘못된 경로를 넣어줬을때 나오는 페이지이다)
NotFound.jsx
import {Link} from 'react-router-dom';
import './notFound.css';
const NotFound = () => {
return(
<section>
<div className="container notfound__container">
<h2>Page Nod Found</h2>
<Link to="/" className="btn">Go Back Home</Link>
</div>
</section>
)
}
export default NotFound;
버튼을 눌러주면 home(index)페이지로 이동된다.