import React, { FunctionComponent } from "react"; import { TemplateProps } from "../../../../src"; import { OpencertsDocuments } from "../../../types"; export const Template: FunctionComponent> = ({ document }) => (

Rendered with custom template

Adding change to custom template

{JSON.stringify(document, null, 2)}
);