diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..24eb271
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/App.js b/src/App.js
index 7e261ca..8f39cc6 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,25 +1,24 @@
import React, { Component } from 'react';
-import logo from './logo.svg';
import './App.css';
+const recipes = ['Waffles', 'Omelets'];
+
+const Recipe = (props) =>(
+
{ props.recipe }
+)
+
+const Recipes = (props) => (
+
+ {props.recipes.map(recipe => )}
+
+);
+
class App extends Component {
render() {
return (
);
}