import React, { PropsWithChildren } from "react";

type EditorLayoutContentProps = PropsWithChildren;

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

    return (
        <div className="order-2 lg:order-1 w-full lg:max-w-4xl flex-1">
            {children}
        </div>
    );
};
