Props not displaying from fetch call
问题 I am trying to display recipes and not sure if I have this setup correctly. I am pulling recipes from a rails api via get fetch request. At the moment nothing is displaying. Here is my recipe container: import React, { Component } from 'react' import RecipeList from '../components/RecipeList' import RecipeInput from '../components/RecipeInput' import { connect } from 'react-redux' import { postRecipes } from '../actions/postRecipes.js' import { getRecipes } from '../actions/getRecipes' class