14 lines
216 B
React
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;
|