@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
22 lines (21 loc) • 458 B
TypeScript
import React from 'react';
export type PlaygroundProps = {
/**
* 代码示例的地址
*/
path: string;
/**
* 渲染容器的 id,默认为 container
*/
rid?: string;
/**
* 预览区、代码区的宽度占比,默认为 0.38
*/
ratio?: number;
/**
* 容器的高度,默认为 400px
*/
height?: number;
};
declare const _default: React.FC<PlaygroundProps>;
export default _default;