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

Commit

Permalink
fix(import): change import syntax
Browse files Browse the repository at this point in the history
change import to use the direct import
  • Loading branch information
eddier committed Mar 6, 2017
1 parent 109757c commit 3030ca7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/LargeCard/LargeCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'

import ReactDOM from 'react-dom'
import Flexbox from 'flexbox-react'
import { Icon } from 'semantic-ui-react'
import Icon from '../suir/icon/Icon'
import LargeCardAction from './LargeCardAction'
import LargeCardClose from './LargeCardClose'
import LargeCardGutter from './LargeCardGutter'
Expand Down
2 changes: 1 addition & 1 deletion src/components/LargeCard/LargeCardClose.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { Icon } from 'semantic-ui-react'
import Icon from '../suir/icon/Icon'

const LargeCardClose = (props) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/MicroCard/MicroCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import MicroCardAction from './MicroCardAction'
import MicroCardFavorite from './MicroCardFavorite'
import MicroCardContent from './MicroCardContent'
import MicroCardCount from './MicroCardCount'
import { Icon } from 'semantic-ui-react'
import Icon from '../suir/icon/Icon'
import '../../styles/components/micro-card.css'

class MicroCard extends React.Component {
Expand Down
2 changes: 1 addition & 1 deletion src/components/MicroCard/MicroCardAction.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { Icon } from 'semantic-ui-react'
import Icon from '../suir/icon/Icon'

const MicroCardAction = (props) => {
return (
Expand Down

0 comments on commit 3030ca7

Please sign in to comment.