diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 05:14:00 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-02 05:14:00 +0800 |
commit | 7858dafce4c9441c8205fa6ed607ca50851cc4ba (patch) | |
tree | cc931d8088b33bc67a9492bbd4bd5ea58f086fe5 | |
parent | dc655fd903c5b35ea9280c5afd10b78b25fa7ca3 (diff) | |
download | dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar.gz dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar.bz2 dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar.lz dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar.xz dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.tar.zst dexon-sol-tools-7858dafce4c9441c8205fa6ed607ca50851cc4ba.zip |
linting: moving order of imports
-rw-r--r-- | packages/instant/src/components/time_counter.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/time_counter.tsx b/packages/instant/src/components/time_counter.tsx index 22dc634d9..f9b68163c 100644 --- a/packages/instant/src/components/time_counter.tsx +++ b/packages/instant/src/components/time_counter.tsx @@ -1,12 +1,12 @@ import * as React from 'react'; import { ONE_SECOND_MS } from '../constants'; +import { ColorOption } from '../style/theme'; import { timeUtil } from '../util/time'; import { Container } from './ui/container'; import { Flex } from './ui/flex'; import { Text } from './ui/text'; -import { ColorOption } from '../style/theme'; export interface TimeCounterProps { estimatedTimeMs: number; |