Skip to content
Snippets Groups Projects
Commit 7fce34e9 authored by Jure's avatar Jure
Browse files

fix: use the named export of shared components

parent c0dc5688
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ import VisibilitySensor from 'react-visibility-sensor' ...@@ -2,7 +2,7 @@ import VisibilitySensor from 'react-visibility-sensor'
import { Link } from 'react-router-dom' import { Link } from 'react-router-dom'
import React from 'react' import React from 'react'
import PropTypes from 'prop-types' import PropTypes from 'prop-types'
import Spinner from '../shared/Spinner' import { Spinner } from '../shared'
import { HasNextPage, NextPageButton } from './style' import { HasNextPage, NextPageButton } from './style'
const NextPageButtonWrapper = props => { const NextPageButtonWrapper = props => {
......
...@@ -7,7 +7,7 @@ import { useMutation } from '@apollo/react-hooks' ...@@ -7,7 +7,7 @@ import { useMutation } from '@apollo/react-hooks'
// import compose from 'recompose/compose'; // import compose from 'recompose/compose';
// import { connect } from 'react-redux'; // import { connect } from 'react-redux';
import Icon from '../../../shared/Icon' import { Icon } from '../../../shared'
// import { addToastWithTimeout } from 'src/actions/toasts'; // import { addToastWithTimeout } from 'src/actions/toasts';
// import { openModal } from 'src/actions/modals'; // import { openModal } from 'src/actions/modals';
// import { replyToMessage } from 'src/actions/message'; // import { replyToMessage } from 'src/actions/message';
......
...@@ -6,7 +6,7 @@ import gql from 'graphql-tag' ...@@ -6,7 +6,7 @@ import gql from 'graphql-tag'
import { useQuery } from '@apollo/react-hooks' import { useQuery } from '@apollo/react-hooks'
import { useDropzone } from 'react-dropzone' import { useDropzone } from 'react-dropzone'
import Spinner from '../../shared/Spinner' import { Spinner } from '../../shared'
import ChangeUsername from './ChangeUsername' import ChangeUsername from './ChangeUsername'
import { BigProfileImage } from './ProfileImage' import { BigProfileImage } from './ProfileImage'
import PageWithHeader from './PageWithHeader' import PageWithHeader from './PageWithHeader'
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment