domain-watchdog/assets/pages/ReverseDirectoryPage.tsx

21 lines
514 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";
2024-07-25 02:09:49 +02:00
import {Grid} from "@mui/material";
import Footer from "../components/Footer";
2024-07-23 18:37:59 +02:00
2024-07-25 02:09:49 +02:00
export default function ReverseDirectoryPage() {
2024-07-23 18:37:59 +02:00
return (
<>
2024-07-25 02:09:49 +02:00
<Container maxWidth="lg" sx={{mt: 20, mb: 4}}>
2024-07-23 21:57:23 +02:00
<Grid container spacing={3}>
<Grid item xs={12} md={8} lg={9}>
2024-07-24 13:46:10 +02:00
2024-07-23 21:57:23 +02:00
</Grid>
</Grid>
2024-07-25 02:09:49 +02:00
<Footer/>
2024-07-23 21:57:23 +02:00
</Container>
2024-07-23 18:37:59 +02:00
</>
);
};