File tree Expand file tree Collapse file tree 7 files changed +21
-18
lines changed Expand file tree Collapse file tree 7 files changed +21
-18
lines changed Original file line number Diff line number Diff line change 1- import * as Reflux from 'reflux' ;
1+ import * as Reflux from 'reflux'
22
33// Each action is like an event channel for one specific event. Actions are called by components.
44// The store is listening to all actions, and the components in turn are listening to the store.
Original file line number Diff line number Diff line change 1- import * as React from 'react' ;
2- import { Segment } from 'react-semantify' ;
1+ import * as React from 'react'
2+ import { Segment } from 'react-semantify'
33
44const About = React . createClass ( {
55 render ( ) {
Original file line number Diff line number Diff line change 1- import * as React from 'react' ;
2- import * as ReactRouter from 'react-router' ;
3- import { Menu , Segment , Section } from 'react-semantify' ;
1+ import * as React from 'react'
2+ import * as ReactRouter from 'react-router'
3+ import { Menu , Segment , Section } from 'react-semantify'
44
55const RouteHandler = ReactRouter . RouteHandler ;
66const Link = ReactRouter . Link ;
Original file line number Diff line number Diff line change 1- import * as React from 'react' ;
2- import UsefulLinks from './UsefulLinks' ;
3- import { Segment } from 'react-semantify' ;
1+ import * as React from 'react'
2+ import { Segment } from 'react-semantify'
3+
4+ import UsefulLinks from './UsefulLinks'
45
56const Home = React . createClass ( {
67 render ( ) {
Original file line number Diff line number Diff line change 1- import * as React from 'react' ;
2- import * as Reflux from 'reflux' ;
3- import LinksActions from '../actions/LinksActions' ;
4- import LinksStore from '../stores/LinksStore' ;
5- import { m } from '../lib/tools' ;
1+ import * as React from 'react'
2+ import * as Reflux from 'reflux'
3+
4+ import LinksActions from '../actions/LinksActions'
5+ import LinksStore from '../stores/LinksStore'
6+ import { m } from '../lib/tools'
67
78const T = React . PropTypes ;
89
Original file line number Diff line number Diff line change 1- import * as React from 'react' ;
2- import * as _ from 'lodash' ;
1+ import * as React from 'react'
2+ import * as _ from 'lodash'
33
44// mounting a React component to a selector id location
55export function mount ( component , location , argv = { } ) {
Original file line number Diff line number Diff line change 1- import * as Reflux from 'reflux' ;
2- import LinksActions from '../actions/LinksActions' ;
1+ import * as Reflux from 'reflux'
2+
3+ import LinksActions from '../actions/LinksActions'
34
45const LinksStore = Reflux . createStore ( {
56 listenables : [ LinksActions ] ,
You can’t perform that action at this time.
0 commit comments