Files
MERN-template/client/pages/static/privacy-policy.jsx
T
2022-07-26 10:18:49 +01:00

17 lines
320 B
React

import React from 'react';
import { Link } from 'react-router-dom';
const Static = props => {
return (
<div className='page central'>
<header>
<h1 className="text centered">Privacy Policy</h1>
<Link className='text centered' to='/'>Return Home</Link>
</header>
</div>
);
};
export default Static;