公告板
版本库
filestore
活动
搜索
登录
main
/
XHFrontWebSiteNew
大赛官网react
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix: s
zhengyiming
9 天以前
0b0a35f9d78e0c03ccdd6ca94d9855787b208b59
[XHFrontWebSiteNew.git]
/
src
/
utils
/
typings.ts
1
2
3
4
5
6
7
8
9
10
11
12
import type { CSSProperties, ReactNode } from 'react';
export interface BasicComponent {
className?: string;
style?: CSSProperties;
children?: ReactNode;
}
export const ComponentDefaults = {
className: '',
style: {},
};