Source: app/data/enum/SelectedRecipes.js

/**
 * Featured recipes on typical day section (in the long term these will be moved
 * in umbraco!)
 */

const SelectedRecipe = {
  BREAKFAST: 'overnight-oats',
  LUNCH: 'ham-and-mushroom-omelette',
  DINNER: 'peri-peri-chicken-and-chips',
};

export default SelectedRecipe;