From a4370f3ffaebf439778a346f3779587edfb71e35 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 23 Apr 2017 16:52:12 -0700 Subject: [PATCH] Move import up to top of file. --- js/components/Marquee.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/components/Marquee.js b/js/components/Marquee.js index 1fac6365..e9de9976 100644 --- a/js/components/Marquee.js +++ b/js/components/Marquee.js @@ -4,6 +4,7 @@ import { connect } from "react-redux"; import { getTimeStr } from "../utils"; import { STEP_MARQUEE } from "../actionTypes"; +import CharacterString from "./CharacterString"; const getBalanceText = balance => { if (balance === 0) { @@ -43,8 +44,6 @@ const negativePixels = pixels => `-${pixels}px`; // If text is wider than the marquee, it needs to loop const loopText = text => (isLong(text) ? text + text : text); -import CharacterString from "./CharacterString"; - class Marquee extends React.Component { constructor(props) { super(props);