@linkdesign/screen
Version:
屏组件库,但使用场景又不局限于屏。主要用于BI、大盘和屏
19 lines (18 loc) • 388 B
TypeScript
import React from 'react';
import { ISingleSelect } from '../single-select';
type Data = {
name: React.ReactNode;
key?: string;
} | string;
interface IProps extends ISingleSelect {
/**
* 数据源
*/
dataSource: Data[];
}
/**
* 子屏标题
* @param props IProps
*/
declare const SubscreenTitle: (props: IProps) => JSX.Element;
export default SubscreenTitle;