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('Header')}

${t('Subheader')}

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

` return ( }> ) } export default CreateView