mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 10:36:43 +00:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
import React from "react";
|
|
import { Link } from "react-router-dom";
|
|
|
|
const RandomButton = props => {
|
|
return (
|
|
<Link to="/meal">
|
|
<button
|
|
class="waves-effect waves-light btn-large"
|
|
onClick={props.handleClick}
|
|
>
|
|
Random Recipe
|
|
</button>
|
|
</Link>
|
|
);
|
|
};
|
|
|
|
export default RandomButton;
|