Skip to content

Commit

Permalink
Changed .. imports to direct imports (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Marszalek authored and vnys committed Nov 13, 2020
1 parent d485245 commit 7712fd8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libraries/core-react/src/Banner/Banner.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'jest-styled-components'
import styled from 'styled-components'
import { add } from '@equinor/eds-icons'
import { Banner } from '.'
import { Icon } from '..'
import { Icon } from '../Icon'
import { banner as tokens } from './Banner.tokens'

const { BannerMessage, BannerIcon, BannerActions } = Banner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { render, cleanup, screen } from '@testing-library/react'
import '@testing-library/jest-dom'
import 'jest-styled-components'
import styled from 'styled-components'
import { CircularProgress } from '..'
import { CircularProgress } from './CircularProgress'

const StyledProgress = styled(CircularProgress)`
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '@testing-library/jest-dom'
import 'jest-styled-components'
import styled from 'styled-components'
import { progress as tokens } from '../Progress.tokens'
import { DotProgress } from '..'
import { DotProgress } from './DotProgress'

const StyledProgress = styled(DotProgress)`
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { render, cleanup, screen } from '@testing-library/react'
import '@testing-library/jest-dom'
import 'jest-styled-components'
import styled from 'styled-components'
import { LinearProgress } from '..'
import { LinearProgress } from './LinearProgress'

const StyledProgress = styled(LinearProgress)`
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { render, cleanup, screen } from '@testing-library/react'
import '@testing-library/jest-dom'
import 'jest-styled-components'
import styled from 'styled-components'
import { StarProgress } from '..'
import { StarProgress } from './StarProgress'

const StyledProgress = styled(StarProgress)`
position: absolute;
Expand Down

0 comments on commit 7712fd8

Please sign in to comment.