mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 16:15:22 +00:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import { ContentKitBlock } from '@gitbook/api';
|
|
import React from 'react';
|
|
|
|
import { ContentKitServerElementProps } from './types';
|
|
|
|
export function ElementBlock(
|
|
props: React.PropsWithChildren<ContentKitServerElementProps<ContentKitBlock>>,
|
|
) {
|
|
const { element, children } = props;
|
|
|
|
return <>{children}</>;
|
|
}
|