Renamed to setup for group testing
This commit is contained in:
33
src/exams/pdf/group.test.report.tsx
Normal file
33
src/exams/pdf/group.test.report.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
/* eslint-disable jsx-a11y/alt-text */
|
||||
import React from "react";
|
||||
import { Document, Page, View, Text, Image } from "@react-pdf/renderer";
|
||||
import { styles } from "./styles";
|
||||
|
||||
import { StyleSheet } from "@react-pdf/renderer";
|
||||
|
||||
|
||||
interface Props {
|
||||
// date: string;
|
||||
// name: string;
|
||||
// email: string;
|
||||
// id: string;
|
||||
// gender?: string;
|
||||
// testDetails: ModuleScore[];
|
||||
// summary: string;
|
||||
// logo: string;
|
||||
// qrcode: string;
|
||||
// renderDetails: React.ReactNode;
|
||||
// title: string;
|
||||
}
|
||||
|
||||
const GroupTestReport = ({}: Props) => {
|
||||
return (
|
||||
<Document>
|
||||
<Page style={styles.body}>
|
||||
<View></View>
|
||||
</Page>
|
||||
</Document>
|
||||
);
|
||||
};
|
||||
|
||||
export default GroupTestReport;
|
||||
Reference in New Issue
Block a user