import { useTranslation } from 'next-i18next' import Settings from './settings' const CutLayout = props => { const { t } = useTranslation(['workbench']) let name = props.design.designConfig.data.name name = name.replace('@freesewing/', '') return (

{ t('layoutThing', { thing: name }) + ': ' + t('forCutting') }

) } export default CutLayout