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

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperkins committed Jul 28, 2017
1 parent 19572f9 commit d9dbe0d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions src/__tests__/with-theme.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* eslint func-style:0, react/prop-types:0 */
import PropTypes from 'prop-types';

import React from 'react';
import React from 'react'
import PropTypes from 'prop-types'
import {View} from 'react-native'
import renderer from 'react-test-renderer'

Expand Down
4 changes: 2 additions & 2 deletions src/create-glamorous.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import PropTypes from './react-compat';
import React from 'react';
import React from 'react'
import {StyleSheet} from 'react-native'
import {CHANNEL} from './constants'
import getStyles from './get-styles'
import PropTypes from './react-compat'

function prepareStyles(styles) {
return styles.filter(style => {
Expand Down
4 changes: 2 additions & 2 deletions src/theme-provider.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import PropTypes from './react-compat';
import React from 'react';
import React from 'react'
import brcast from 'brcast'
import {CHANNEL} from './constants'
import PropTypes from './react-compat'

export default class ThemeProvider extends React.Component {
static childContextTypes = {
Expand Down
4 changes: 2 additions & 2 deletions src/with-theme.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PropTypes from './react-compat';
import React from 'react';
import React from 'react'
import {CHANNEL} from './constants'
import PropTypes from './react-compat'

function generateWarningMessage(componentName) {
// eslint-disable-next-line max-len
Expand Down

0 comments on commit d9dbe0d

Please sign in to comment.