mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 02:05:36 +00:00
21 lines
514 B
TypeScript
21 lines
514 B
TypeScript
import React from 'react';
|
|
import Container from "@mui/material/Container";
|
|
import {Grid} from "@mui/material";
|
|
import Footer from "../components/Footer";
|
|
|
|
|
|
export default function ReverseDirectoryPage() {
|
|
return (
|
|
<>
|
|
<Container maxWidth="lg" sx={{mt: 20, mb: 4}}>
|
|
<Grid container spacing={3}>
|
|
<Grid item xs={12} md={8} lg={9}>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
<Footer/>
|
|
</Container>
|
|
</>
|
|
);
|
|
};
|