Skip to content

Commit 40a29fd

Browse files
committed
removed semicolons from ES6b imports
1 parent 8d4f6b5 commit 40a29fd

File tree

7 files changed

+21
-18
lines changed

7 files changed

+21
-18
lines changed

src/app/actions/LinksActions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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.

src/app/components/About.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

44
const About = React.createClass({
55
render() {

src/app/components/App.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
const RouteHandler = ReactRouter.RouteHandler;
66
const Link = ReactRouter.Link;

src/app/components/Home.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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

56
const Home = React.createClass({
67
render() {

src/app/components/UsefulLinks.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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

78
const T = React.PropTypes;
89

src/app/lib/tools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
55
export function mount(component, location, argv = {}) {

src/app/stores/LinksStore.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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

45
const LinksStore = Reflux.createStore({
56
listenables: [LinksActions],

0 commit comments

Comments
 (0)