mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { resources } from '../../utils/constants';
|
|
import PDFViewer from '../Common/PDFViewer';
|
|
|
|
function HelpPrivacy() {
|
|
return (
|
|
<PDFViewer
|
|
file={resources.privacy_policy}
|
|
/>);
|
|
}
|
|
|
|
export default HelpPrivacy;
|