import React, { PropsWithChildren } from "react";

type EditorLayoutProps = PropsWithChildren;

export const EditorLayout: React.FC<EditorLayoutProps> = (props) => {
    const {
        children
    } = props;

    return (
        <div className="flex flex-col lg:flex-row gap-6 flex-1">
            {children}
        </div>
    );
};
