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