import { lazy, Suspense } from 'solid-js' import { t } from '../../utils/intl' import { Loading } from '../Loading' const Editor = lazy(() => import('../EditorNew/Editor')) const newArticleIpsum = `
${t('A short introduction to keep the reader interested')}
` export const CreateView = () => { return (