fix: edgeless not work

This commit is contained in:
lawvs 2022-10-26 17:26:51 +08:00
parent 9c77d0c7a7
commit 344483e436

View File

@ -27,7 +27,7 @@ const BlockSuiteEditor = forwardRef<EditorContainer>(({}, ref) => {
editor.remove(); editor.remove();
}; };
}, [ref]); }, [ref]);
return <div ref={containerElement} />; return <div id="editor" style={{ height: '100%' }} ref={containerElement} />;
}); });
export const Editor = () => { export const Editor = () => {
@ -67,6 +67,7 @@ declare global {
namespace JSX { namespace JSX {
interface IntrinsicElements { interface IntrinsicElements {
// TODO fix types on react
'editor-container': EditorContainer; 'editor-container': EditorContainer;
} }
} }