File tree Expand file tree Collapse file tree 8 files changed +11
-12
lines changed
Expand file tree Collapse file tree 8 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " react-es7" ,
3- "version" : " 0.0.11 " ,
3+ "version" : " 0.0.12 " ,
44 "description" : " Example of using React + Reflux + router + ES6 with experimental ES7 syntax + Jest + Semantic-UI" ,
55 "main" : " src/index.js" ,
66 "scripts" : {
2727 "6to5" : " *" ,
2828 "6to5-jest" : " hipertracker/6to5-jest" ,
2929 "broccoli" : " ^0.13.3" ,
30- "broccoli-6to5-transpiler" : " ^0.1.1" ,
3130 "broccoli-babel-transpiler" : " ^4.0.0" ,
3231 "broccoli-cli" : " 0.0.1" ,
3332 "broccoli-env" : " 0.0.1" ,
Original file line number Diff line number Diff line change 1- import * as Reflux from 'reflux'
1+ import 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'
1+ import React from 'react'
22import { Segment } from 'react-semantify'
33
44const About = React . createClass ( {
Original file line number Diff line number Diff line change 1- import * as React from 'react'
2- import * as ReactRouter from 'react-router'
1+ import React from 'react'
2+ import ReactRouter from 'react-router'
33import { Menu , Segment , Section } from 'react-semantify'
44
55const RouteHandler = ReactRouter . RouteHandler ;
Original file line number Diff line number Diff line change 1- import * as React from 'react'
1+ import React from 'react'
22import { Segment } from 'react-semantify'
33
44import UsefulLinks from './UsefulLinks'
Original file line number Diff line number Diff line change 1- import * as React from 'react'
2- import * as Reflux from 'reflux'
1+ import React from 'react'
2+ import Reflux from 'reflux'
33
44import LinksActions from '../actions/LinksActions'
55import LinksStore from '../stores/LinksStore'
Original file line number Diff line number Diff line change 1- import * as React from 'react'
2- import * as _ from 'lodash'
1+ import React from 'react'
2+ import _ 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'
1+ import Reflux from 'reflux'
22
33import LinksActions from '../actions/LinksActions'
44
You can’t perform that action at this time.
0 commit comments