Files
gitbook/packages/react-contentkit/src/ElementBlock.tsx
2025-02-26 17:59:34 +01:00

13 lines
327 B
TypeScript

import type { ContentKitBlock } from '@gitbook/api';
import type React from 'react';
import type { ContentKitServerElementProps } from './types';
export function ElementBlock(
props: React.PropsWithChildren<ContentKitServerElementProps<ContentKitBlock>>
) {
const { children } = props;
return <>{children}</>;
}