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

22 lines
426 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">
{
2022-06-17 12:02:09 +02:00
t('layoutThing', { thing: props.design.config.name })
2022-02-20 18:46:21 +01:00
+ ': '
+ t('forCutting')
}
</h2>
<Settings {...props} />
</div>
)
}
export default CutLayout