6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
|
import { lazy } from 'react';
|
||
|
|
||
|
export const CodeEditor = lazy(() =>
|
||
|
import('./main').then((m) => ({ default: m.CodeEditor }))
|
||
|
);
|