import * as React from 'react'; export const SimpleShowLayout = ({ children, }: { children: React.ReactNode; }) => (
{React.Children.map(children, child => (
{child}
))}
);