import { Suspense } from 'react'
import Card from 'components/Card'
import Loading from 'components/Loading'
import { Text } from 'components/Text'
import { getVaults } from 'utils/api'
async function Content(props: PageProps) {
const vaults = await getVaults()
const address = props.params.address
if (!address)
return (
You need to be connected to use the earn page
)
return {`Earn page for ${address}`}
}
function Fallback() {
return
}
export default function Overview(props: PageProps) {
return (
}>
{/* @ts-expect-error Server Component */}
)
}