File tree 11 files changed +10
-10
lines changed
11 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import React, { PropTypes } from 'react';
3
3
import CommentForm from './CommentForm/CommentForm' ;
4
4
import CommentList from './CommentList/CommentList' ;
5
5
import css from './CommentBox.scss' ;
6
- import BaseComponent from '.. /BaseComponent' ;
6
+ import BaseComponent from 'libs/components /BaseComponent' ;
7
7
8
8
export default class CommentBox extends BaseComponent {
9
9
static propTypes = {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Alert from 'react-bootstrap/lib/Alert';
9
9
import ReactCSSTransitionGroup from 'react/lib/ReactCSSTransitionGroup' ;
10
10
import _ from 'lodash' ;
11
11
12
- import BaseComponent from '../.. /BaseComponent' ;
12
+ import BaseComponent from 'libs/components /BaseComponent' ;
13
13
14
14
const emptyComment = { author : '' , text : '' } ;
15
15
const textPlaceholder = 'Say something using markdown...' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React, { PropTypes } from 'react';
2
2
import marked from 'marked' ;
3
3
4
4
import css from './Comment.scss' ;
5
- import BaseComponent from '../../.. /BaseComponent' ;
5
+ import BaseComponent from 'libs/components /BaseComponent' ;
6
6
7
7
export default class Comment extends BaseComponent {
8
8
static propTypes = {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import ReactCSSTransitionGroup from 'react/lib/ReactCSSTransitionGroup';
5
5
import _ from 'lodash' ;
6
6
7
7
import Comment from './Comment/Comment' ;
8
- import BaseComponent from '../.. /BaseComponent' ;
8
+ import BaseComponent from 'libs/components /BaseComponent' ;
9
9
10
10
export default class CommentList extends BaseComponent {
11
11
static propTypes = {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React, { PropTypes } from 'react';
2
2
3
3
import CommentBox from '../CommentBox/CommentBox' ;
4
4
import css from './CommentScreen.scss' ;
5
- import BaseComponent from '.. /BaseComponent' ;
5
+ import BaseComponent from 'libs/components /BaseComponent' ;
6
6
7
7
export default class CommentScreen extends BaseComponent {
8
8
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import metaTagsManager from 'libs/metaTagsManager';
7
7
import CommentForm from '../CommentBox/CommentForm/CommentForm' ;
8
8
import CommentList from '../CommentBox/CommentList/CommentList' ;
9
9
import css from './SimpleCommentScreen.scss' ;
10
- import BaseComponent from '.. /BaseComponent' ;
10
+ import BaseComponent from 'libs/components /BaseComponent' ;
11
11
12
12
export default class SimpleCommentScreen extends BaseComponent {
13
13
constructor ( props , context ) {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
3
- import BaseComponent from '.. /BaseComponent' ;
3
+ import BaseComponent from 'libs/components /BaseComponent' ;
4
4
5
5
export default class TestReactRouter extends BaseComponent {
6
6
render ( ) {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
3
- import BaseComponent from '.. /BaseComponent' ;
3
+ import BaseComponent from 'libs/components /BaseComponent' ;
4
4
5
5
export default class TestReactRouterRedirect extends BaseComponent {
6
6
static checkAuth ( nextState , replaceState ) {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { bindActionCreators } from 'redux';
4
4
5
5
import CommentScreen from '../components/CommentScreen/CommentScreen' ;
6
6
import * as commentsActionCreators from '../actions/commentsActionCreators' ;
7
- import BaseComponent from '.. /components/BaseComponent' ;
7
+ import BaseComponent from 'libs /components/BaseComponent' ;
8
8
9
9
function select ( state ) {
10
10
// Which part of the Redux global state does our component want to receive as props?
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { bindActionCreators } from 'redux';
4
4
5
5
import CommentScreen from '../components/CommentScreen/CommentScreen' ;
6
6
import * as commentsActionCreators from '../actions/commentsActionCreators' ;
7
- import BaseComponent from '.. /components/BaseComponent' ;
7
+ import BaseComponent from 'libs /components/BaseComponent' ;
8
8
9
9
function select ( state ) {
10
10
// Which part of the Redux global state does our component want to receive as props?
File renamed without changes.
You can’t perform that action at this time.
0 commit comments