import React from 'react'; import styles from './LayoutShell.module.css'; type Props = { topBar: React.ReactNode; left: React.ReactNode; center: React.ReactNode; right: React.ReactNode; }; export function LayoutShell({ topBar, left, center, right }: Props) { return (
{topBar}
{left}
{center}
{right}
); }