Skip to content

Instantly share code, notes, and snippets.

@rrgayhart
Last active May 15, 2017 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rrgayhart/cb8328448444674f6049cb66d09f6472 to your computer and use it in GitHub Desktop.
Save rrgayhart/cb8328448444674f6049cb66d09f6472 to your computer and use it in GitHub Desktop.
code-snippit-redux-lesson-app
// src/components/App.js
import React from 'react';
import './App.css';
import AddTodoFormContainer from './AddTodoFormContainer'
const App = () => {
return (
<div className="App">
<AddTodoFormContainer />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment