公告板
版本库
filestore
活动
搜索
登录
main
/
XHFrontWebSiteNew
大赛官网react
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
init
zhengyiming
2025-07-10
5c33978e9e3e934378d8f2153a2cd919b1cb6ddd
[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: {},
};