ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
3 lines • 308 B
JavaScript
import * as React from 'react';
export const SimpleShowLayout = ({ children, }) => (React.createElement("div", { style: { display: 'flex', flexDirection: 'column', gap: '1em' } }, React.Children.map(children, child => (React.createElement("div", null, child)))));
//# sourceMappingURL=SimpleShowLayout.js.map