4so-fourseasons/react-hoc-spinners

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import makeWithLoadingIndicator from './HOCS/makeWithLoadingIndicator'
import Cube from './components/Cube'
import SimpleCircle from './components/SimpleCircle'

// Components
export { Cube }
export { SimpleCircle }

// HOCs
export { makeWithLoadingIndicator }

export default {
  makeWithLoadingIndicator,
  Cube,
  SimpleCircle
}