import { useTranslation } from 'next-i18next' import PageSizePicker from './pagesize-picker' import OrientationPicker from './orientation-picker' const PrintLayoutSettings = props => { const settingsProps = { gist: props.gist, updateGist: props.updateGist } return (
{JSON.stringify(props.gist._state, null ,2)}
) } export default PrintLayoutSettings