14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
import Info from "../../Components/Info/Info"
|
|
|
|
const Page = () => {
|
|
return (
|
|
<Info
|
|
headerText="Privacy Policy"
|
|
title="Explanatory text on the processing of personal data"
|
|
isLoading={false}
|
|
isPrivacy={true}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Page |