File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
frontend/src/oso-extensions Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ import { slotsController } from "../core/slots/slots";
1818import { useFragmentStore } from "./fragment-store" ;
1919import { viewStateAtom } from "@/core/mode" ;
2020import { useSetAtom } from "jotai" ;
21+ import { Panel , PanelGroup } from "react-resizable-panels" ;
22+ import { PanelsWrapper } from "@/components/editor/chrome/wrapper/panels" ;
2123
2224// Force tailwind classnames
2325// tailwind only creates css for classnames that exist the FE files
@@ -74,7 +76,13 @@ export const OSONotebook: React.FC = memo(() => {
7476 < CssVariables
7577 variables = { { "--marimo-code-editor-font-size" : editorFontSize } }
7678 >
77- { renderBody ( mode ) }
79+ < PanelsWrapper >
80+ < PanelGroup direction = "vertical" >
81+ < Panel id = "app" key = "app" className = "relative h-full" >
82+ { renderBody ( mode ) }
83+ </ Panel >
84+ </ PanelGroup >
85+ </ PanelsWrapper >
7886 </ CssVariables >
7987 </ Providers >
8088 ) ;
You can’t perform that action at this time.
0 commit comments