{pattern ? (
) : (
{t('account:oneMomentPLease')}
)}
)
}
export default Edit$$Design$$Page
export async function getStaticProps({ locale, params }) {
return {
props: {
...(await serverSideTranslations(locale, ns)),
id: params.id,
page: {
locale,
path: ['account', 'patterns', '$$design$$', params.id, 'edit'],
title: '$$Design$$',
},
},
}
}
/*
* getStaticPaths() is used to specify for which routes (think URLs)
* this page should be used to generate the result.
*/
export async function getStaticPaths() {
return {
paths: [],
fallback: 'blocking',
}
}