/* Copyright 2026 Marimo. All rights reserved. */ import type { PropsWithChildren } from "react"; export const PanelsWrapper: React.FC = ({ children }) => { return (
{children}
); };