import { lazy, Suspense } from 'solid-js' import { t } from '../../utils/intl' import { Loading } from '../Loading' const Editor = lazy(() => import('../EditorNew/Editor')) const newArticleIpsum = `

${t('Header')}

${t('Subheader')}

${t('A short introduction to keep the reader interested')}

` export const CreateView = () => { return ( }> ) } export default CreateView