mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-10 12:26:39 +00:00
15 lines
370 B
JavaScript
15 lines
370 B
JavaScript
import React from "react";
|
|
import RandomButton from "../components/RandomButton";
|
|
|
|
const HomePage = props => {
|
|
return (
|
|
<div className="section background">
|
|
<div className="container center-align">
|
|
<h1>The Chef's Meal Suggestions</h1>
|
|
<RandomButton handleClick={props.handleClick} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|