mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import PDFViewer from '@/components/ui/PDFViewer';
|
|
import { resources } from '@/utils/constants';
|
|
|
|
function HelpPrivacy() {
|
|
return (
|
|
<div>
|
|
<PDFViewer file={resources.privacy_policy} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default HelpPrivacy;
|