import * as React from "react"; import { Link } from "react-router-dom"; import { useRecipes } from "../../hooks"; export default function Recipes() { const recipes = useRecipes(); return ( <>

Рецепты

+ Добавить новый рецепт

{recipes.map(({ id, title }) => ( ))}
{title}
); }