export const WithChildren = () => (
<Box height={600}>
<DocumentViewer
title="Document PDF"
type="pdf"
source="https://upload.wikimedia.org/wikipedia/commons/4/4e/Wikip%C3%A9dia.pdf"
height="100%"
>
<Box p={'2W'} minW={600}>
<Typography>Contenu enfant</Typography>
</Box>
</DocumentViewer>
</Box>
);