Skip to content

Instantly share code, notes, and snippets.

@sashafklein
sashafklein / 106_filterevenlengthwords-js.markdown
Created August 9, 2018 18:06
106_filterEvenLengthWords.js
@sashafklein
sashafklein / issues.md
Last active October 7, 2016 06:35
Issue hitlist
  • #703 Fix day dropdown selector

  • #702 Bisector hover dots should follow line, not interval

  • #701 Table rating colors are wrong

    Is this the issue? I just thought they were unclear - Sasha

  • #700 Logout link should be more intense

  • #699 Preferences height should stay constant

  • #698 Set as homepage should be pushed right if alone in footer

  • #697 Set as homepage should stay selected when clicked

import React from 'react';
import ReactDOM from 'react-dom';
import ReactTransitionGroup from 'react-addons-transition-group'
import TransitionWrapper from './transition-wrapper'
// Page component imports
import AppContainer from './views/app-container';
import SomePage from './views/some-page';
import SomeOtherPage from './views/some-other-page';
@sashafklein
sashafklein / app-container.jsx
Last active December 23, 2015 19:26
Redux-Simple-Router with ReactTransitionGroup
import React from 'react';
import { connect } from 'react-redux';
import SomePage from './some-page';
class AppContainer extends React.Component {
constructor(props) {
super(props);
// This is the first component the container will load in its content.
this.state = {
initialContent: <SomePage />