1
0
Fork 0
freesewing/sites/freesewing.shared/components/workbench/layout/cut/index.js

22 lines
427 B
JavaScript
Raw Normal View History

2022-02-20 18:46:21 +01:00
import { useTranslation } from 'next-i18next'
import Settings from './settings'
const CutLayout = props => {
const { t } = useTranslation(['workbench'])
return (
<div>
<h2 className="capitalize">
{
t('layoutThing', { thing: props.pattern.config.name })
+ ': '
+ t('forCutting')
}
</h2>
<Settings {...props} />
</div>
)
}
export default CutLayout