import withAuthGuard from '~/src/lib/hocs/withAuthGuard';
import { withI18n } from '~/src/lib/i18n';
import { CreateFormPage } from '~/src/views/create/CreateFormPage';

const CreateFormPageWithI18n = withI18n(withAuthGuard(CreateFormPage), [
  'create',
  'form',
  'formBuilder',
  'formPage',
]);

export default CreateFormPageWithI18n;
