import React, { Component } from 'react'; import { withRouter } from "react-router-dom"; import Cookbook from '../utils/Cookbook'; class Cookbook extends Component { constructor(props) { super(props); this.state = { recepie: null, ingredients: [], durations: [] } } render() { if (!this.state.recepie) { return