import { ContentKitHStack, ContentKitVStack } from '@gitbook/api'; import { ContentKitServerElementProps } from './types'; import classNames from 'classnames'; export function ElementStack( props: React.PropsWithChildren< ContentKitServerElementProps >, ) { const { element, children } = props; return (
{children}
); }