Skip to content

Instantly share code, notes, and snippets.

View mbeaudru's full-sized avatar

Manuel Beaudru mbeaudru

View GitHub Profile
@mbeaudru
mbeaudru / TodosContainer.jsx
Created August 20, 2018 15:19
@Medium - Render Props are the new Controllers / Container sample
import React, { Component, Fragment } from "react";
import TodosController from "../controllers/TodosController";
import TodoItem from "./TodoItem";
class TodosContainer extends Component {
state = {
todoInput: ""
};
updateTodoInputValue = value => this.setState({ todoInput: value });