UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 694 B
export type SubmissionPageProps = { /** The ID of the submission to view */ submissionId: string | number; /** If true, display reviewer controls on the page */ isReviewer: boolean; }; /** * Page for a Data Access Submission. Supports the following user types: * - ACT member or other designated reviewer can view, and choose to approve or reject. * - Data Access Request submitter can view and modify their own submission. * - Data Access Request requester (who is not a submitter) can view their own submission. */ export default function SubmissionPage(props: SubmissionPageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SubmissionPage.d.ts.map