import { useState } from 'react' import TradeChart from 'components/Trade/TradeChart' import TradeModule from 'components/Trade/TradeModule' import { getEnabledMarketAssets } from 'utils/assets' import AccountDetailsCard from 'components/Trade/AccountDetailsCard' export default function TradePage() { const enabledMarketAssets = getEnabledMarketAssets() const [buyAsset, setBuyAsset] = useState(enabledMarketAssets[0]) const [sellAsset, setSellAsset] = useState(enabledMarketAssets[1]) return (
) }