import { Box } from '@chakra-ui/react'; import { __ } from '@wordpress/i18n'; import React from 'react'; import DocPreview from '../add-ons/components/DocPreview'; interface Props { items: DownloadMaterials; } const InteractiveDownloadMaterial: React.FC = (props) => { const { items: attachments } = props; return ( ); }; export default InteractiveDownloadMaterial;