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