Files
gitbook/packages/react-contentkit/src/ElementBlock.tsx
T
2026-08-13 13:18:42 +00:00

14 lines
328 B
TypeScript

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