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