import { Box, Divider } from '@chakra-ui/react'; import { __ } from '@wordpress/i18n'; import React from 'react'; import { isAddonActive } from '../../add-ons/api/addons'; import DocUploader from '../../add-ons/components/DocUploader'; interface Props { defaultValue?: DownloadMaterials; } const DownloadMaterial: React.FC = (props) => { const { defaultValue } = props; if (isAddonActive('download-materials')) { return ( <> ); } return null; }; export default DownloadMaterial;