mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
* feat: navbar and main components added * feat: add shopping cart * added cart and store components * basic functionality complete * fix: effect * adding more logic and components * basic features * reorg tree and add summary * feat: new stuff * styling: more stuff * changes * as good as itll get * added public --------- Co-authored-by: mike <mike@windows>
16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
import { Link } from "react-router-dom";
|
|
|
|
function ErrorPage() {
|
|
return (
|
|
<div>
|
|
<h1>Oh no, this route doesn't exist!</h1>
|
|
<p>
|
|
You can go back to the home page by clicking
|
|
<Link to="/">here</Link>
|
|
though!
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ErrorPage;
|