Skip to content

Commit

Permalink
reorder types
Browse files Browse the repository at this point in the history
  • Loading branch information
abcrane123 committed Jun 13, 2024
1 parent 0c0c4b3 commit 0b6e86b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/swap/components/Swap.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { useCallback, useMemo, useState } from 'react';
import { cn } from '../../lib/utils';
import { SwapContext } from '../context';
import type { SwapError, SwapReact } from '../types';
import type { Token } from '../../token';
import { getSwapQuote } from '../core/getSwapQuote';
import { isSwapError } from '../utils';
import type { SwapError, SwapReact } from '../types';
import type { Token } from '../../token';

export function Swap({ account, children, onError }: SwapReact) {
const [fromAmount, setFromAmount] = useState('');
Expand Down

0 comments on commit 0b6e86b

Please sign in to comment.