Skip to content

Commit b4b3cd7

Browse files
docs: Default blocks example fix (#1397)
1 parent eefb4a1 commit b4b3cd7

File tree

1 file changed

+1
-9
lines changed
  • examples/01-basic/04-default-blocks

1 file changed

+1
-9
lines changed

examples/01-basic/04-default-blocks/App.tsx

+1-9
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,5 @@ export default function App() {
138138
});
139139

140140
// Renders the editor instance using a React component.
141-
return (
142-
<div
143-
style={{
144-
height: "50vh",
145-
overflow: "scroll",
146-
}}>
147-
<BlockNoteView editor={editor} />
148-
</div>
149-
);
141+
return <BlockNoteView editor={editor} />;
150142
}

0 commit comments

Comments
 (0)