mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
14 lines
459 B
TypeScript
14 lines
459 B
TypeScript
|
|
import {Card, Flex} from "antd";
|
||
|
|
import {t} from "ttag";
|
||
|
|
import {TrackedDomainTable} from "../../components/tracking/watchlist/TrackedDomainTable";
|
||
|
|
import React from "react";
|
||
|
|
|
||
|
|
export default function TrackedDomainPage() {
|
||
|
|
|
||
|
|
return <Flex gap="middle" align="center" justify="center" vertical>
|
||
|
|
<Card title={t`Tracked domain names`}
|
||
|
|
style={{width: '100%', height: '80vh'}}>
|
||
|
|
<TrackedDomainTable/>
|
||
|
|
</Card>
|
||
|
|
</Flex>
|
||
|
|
}
|