Skip to content

Instantly share code, notes, and snippets.

View slightlytyler's full-sized avatar
💭
🤓 codin'

Tyler Martinez slightlytyler

💭
🤓 codin'
  • Cat City
View GitHub Profile
@slightlytyler
slightlytyler / Filter.js
Created June 7, 2016 15:32
Example of component + container
import React, { Component, PropTypes } from 'react';
import { ALL, ACTIVE, COMPLETED } from 'src/constants';
class Filters extends Component {
static propTypes = {
currentFilter: PropTypes.oneOf([
ALL,
ACTIVE,
COMPLETED,
]).isRequired,