Renamed to setup for group testing

This commit is contained in:
Joao Ramos
2024-01-08 22:19:48 +00:00
parent cd8860f6ac
commit 2540398ab0
3 changed files with 37 additions and 4 deletions

View 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;