domain-watchdog/assets/pages/WatchlistsPage.tsx

28 lines
791 B
TypeScript
Raw Normal View History

2024-07-23 18:37:59 +02:00
import React from 'react';
2024-07-23 21:57:23 +02:00
import Container from "@mui/material/Container";
import {Grid, Paper} from "@mui/material";
2024-07-23 18:37:59 +02:00
2024-07-24 13:46:10 +02:00
export default function DomainFinderPage() {
2024-07-23 18:37:59 +02:00
return (
<>
2024-07-23 21:57:23 +02:00
<Container maxWidth="lg" sx={{mt: 4, mb: 4}}>
<Grid container spacing={3}>
<Grid item xs={12} md={8} lg={9}>
<Paper
sx={{
p: 2,
display: 'flex',
flexDirection: 'column',
height: 240,
}}
>
2024-07-24 13:46:10 +02:00
2024-07-23 21:57:23 +02:00
</Paper>
</Grid>
</Grid>
</Container>
2024-07-23 18:37:59 +02:00
</>
);
};