mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-10 04:16:50 +00:00
21 lines
521 B
JavaScript
21 lines
521 B
JavaScript
import React from "react";
|
|
import RandomButton from "../components/RandomButton";
|
|
|
|
const NotFoundPage = props => {
|
|
return (
|
|
<div className="section">
|
|
<div className="container center-align">
|
|
<h1>Wrong Way!</h1>
|
|
<img
|
|
src="https://images.otstatic.com/prod/26153735/2/large.jpg"
|
|
alt="404 not found"
|
|
/>
|
|
<div className="row">
|
|
<RandomButton handleClick={props.handleClick} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFoundPage;
|