import { Suspense } from 'react' import { Card } from 'components/Card' import Loading from 'components/Loading' import { Text } from 'components/Text' async function Content(props: PageProps) { const wallet = props.params.wallet return wallet ? ( {`Order book for ${wallet}`} ) : ( You need to be connected to see the order book ) } function Fallback() { return } export default function OrderBook(props: PageProps) { return ( }> {/* @ts-expect-error Server Component */} ) }