Skip to content

Commit 8c2ac77

Browse files
committed
Fixed final files with comments moved by jscodeshift.
1 parent 75d8608 commit 8c2ac77

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

apps/src/lib/tools/jsdebugger/JsDebugger.jsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
import React from 'react';
2-
import {connect} from 'react-redux';
3-
import $ from 'jquery';
4-
5-
import i18n from '@cdo/locale';
6-
71
/**
82
* A React component for our JavaScript debugger UI. Returns a connected component
93
* so this can only be used in cases where we have a redux store.
104
*/
11-
125
import PropTypes from 'prop-types';
13-
6+
import React from 'react';
7+
import {connect} from 'react-redux';
8+
import $ from 'jquery';
9+
import i18n from '@cdo/locale';
1410
import Radium from 'radium';
1511
import dom from '../../../dom';
1612
import commonStyles from '../../../commonStyles';

apps/src/tutorialExplorer/tutorialExplorer.js

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Entry point to build a bundle containing a set of globals used when displaying
3+
* tutorialExplorer. Includes the TutorialExplorer React class.
4+
*/
5+
import PropTypes from 'prop-types';
16
import React from 'react';
27
import ReactDOM from 'react-dom';
38
import Immutable from 'immutable';
@@ -22,14 +27,6 @@ import {
2227
} from './responsive';
2328
import i18n from '@cdo/tutorialExplorer/locale';
2429
import _ from 'lodash';
25-
26-
/**
27-
* Entry point to build a bundle containing a set of globals used when displaying
28-
* tutorialExplorer. Includes the TutorialExplorer React class.
29-
*/
30-
31-
import PropTypes from 'prop-types';
32-
3330
import queryString from 'query-string';
3431
import { StickyContainer } from 'react-sticky';
3532

0 commit comments

Comments
 (0)