Files
MERN-template/client/pages/static/privacy-policy.jsx
T
2022-06-10 16:53:42 +01:00

14 lines
216 B
React

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