2021-12-16 02:50:03 +00:00
|
|
|
import { SearchableGrid } from '../components/contracts-list'
|
2021-12-14 01:09:16 +00:00
|
|
|
import { Header } from '../components/header'
|
2021-12-17 04:44:48 +00:00
|
|
|
import { useContracts } from '../hooks/use-contracts'
|
2021-12-14 08:35:20 +00:00
|
|
|
|
2021-12-14 01:09:16 +00:00
|
|
|
export default function Markets() {
|
2021-12-17 04:44:48 +00:00
|
|
|
const contracts = useContracts()
|
2021-12-14 01:09:16 +00:00
|
|
|
|
|
|
|
return (
|
2021-12-18 23:40:39 +00:00
|
|
|
<div className="max-w-4xl px-4 pb-8 mx-auto">
|
2021-12-14 01:09:16 +00:00
|
|
|
<Header />
|
2021-12-18 23:40:39 +00:00
|
|
|
<SearchableGrid contracts={contracts === 'loading' ? [] : contracts} />
|
2021-12-14 01:09:16 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|