import { SwapButton } from "./SwapButton";
import { SwapPanel } from "./SwapPanel";
import { SwapPanelFiat } from "./SwapPanel/SwapPanelFiat";
import { SwapWalletAddress } from "./SwapWalletAddress/SwapWalletAddress";

export type SwapPanelType = "source" | "destination";

export const SwapView = () => {
  return (
    <div className="flex flex-col gap-4">
      <SwapPanelFiat />
      <SwapPanel />
      <SwapWalletAddress />
      <SwapButton />
    </div>
  );
};
