Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from soldotno/fix-redux-thunk-update
Browse files Browse the repository at this point in the history
Use ES6-syntax for import/require
  • Loading branch information
eiriklv authored Jul 12, 2016
2 parents 47b6a9e + 7f98a39 commit cf59eb2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurora-core",
"version": "1.1.1",
"version": "1.1.2",
"description": "Aurora Application Assembler Core",
"main": "index.js",
"engines": {
Expand Down
12 changes: 6 additions & 6 deletions src/decorators/with-redux.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Dependencies
*/
const React = require('react');
const hoistStatics = require('hoist-non-react-statics');
const { createStore, applyMiddleware, compose } = require('redux');
const thunk = require('redux-thunk');
const createLogger = require('redux-logger');
const { Provider } = require('react-redux');
import React from 'react';
import hoistStatics from 'hoist-non-react-statics';
import { createStore, applyMiddleware, compose } from 'redux';
import thunk from 'redux-thunk';
import createLogger from 'redux-logger';
import { Provider } from 'react-redux';

/**
* Higher order component factory
Expand Down

0 comments on commit cf59eb2

Please sign in to comment.