22 lines
662 B
TypeScript
22 lines
662 B
TypeScript
|
import { ProbChangeTable } from 'web/components/contract/prob-change-table'
|
||
|
import { Col } from 'web/components/layout/col'
|
||
|
import { Page } from 'web/components/page'
|
||
|
import { Title } from 'web/components/title'
|
||
|
import { useProbChanges } from 'web/hooks/use-prob-changes'
|
||
|
import { useUser } from 'web/hooks/use-user'
|
||
|
|
||
|
export default function DailyMovers() {
|
||
|
const user = useUser()
|
||
|
|
||
|
const changes = useProbChanges(user?.id ?? '')
|
||
|
|
||
|
return (
|
||
|
<Page>
|
||
|
<Col className="pm:mx-10 gap-4 sm:px-4 sm:pb-4">
|
||
|
<Title className="mx-4 !mb-0 sm:mx-0" text="Daily movers" />
|
||
|
<ProbChangeTable changes={changes} full />
|
||
|
</Col>
|
||
|
</Page>
|
||
|
)
|
||
|
}
|