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

const CreateExclusiveContentPageWrapper = withI18n(
  withAuthGuard(CreateExclusiveContentPage),
  ['create', 'exclusiveContent']
);

export default CreateExclusiveContentPageWrapper;
