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