mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import * as React from "react";
|
|
|
|
const MultiplayerEditor = React.lazy(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "multiplayer-editor" */
|
|
"./MultiplayerEditor"
|
|
)
|
|
);
|
|
|
|
export default MultiplayerEditor;
|