Skip to content

Instantly share code, notes, and snippets.

View nickjohnson-dev's full-sized avatar
📚
Learning more and more every day.

Nick Johnson nickjohnson-dev

📚
Learning more and more every day.
  • CoderPad
  • Huntsville, AL
View GitHub Profile
@nickjohnson-dev
nickjohnson-dev / my-app.ts
Last active March 31, 2016 02:35
Angular 2 Simple Wizard
import { Component } from 'angular2/core';
import { MyWizard } from './my-wizard';
import { MyWizardStep } from './my-wizard-step';
@Component({
selector: 'my-app',
directives: [
MyWizard,
MyWizardStep,
],
@nickjohnson-dev
nickjohnson-dev / my-app.ts
Created March 30, 2016 23:25
Angular 2 Simple Wizard
import { Component } from 'angular2/core';
import { MyWizard } from './my-wizard';
import { MyWizardStep } from './my-wizard-step';
@Component({
selector: 'my-app',
directives: [
MyWizard,
MyWizardStep,
],
@nickjohnson-dev
nickjohnson-dev / App.js
Created August 21, 2015 03:18
Playing with Asynchronous Redux + React
import React from 'react';
import { connect } from 'react-redux';
import {
decrementCount,
incrementCount,
delayedIncrementCount
} from './app-actions';
export default connect(
state => ({