codernew-api-frontend/src/context.tsx
gaoziman f77675e5fc feat(核心): 添加项目源代码
- 实现 React + Arco Design Pro 基础框架
- 添加页面路由和布局组件
- 实现用户认证和权限管理
- 添加数据可视化图表组件
- 实现列表、表单等常用页面模块
- 配置 Redux 状态管理
- 添加工具函数和自定义 Hooks
2025-11-05 09:48:31 +08:00

9 lines
203 B
TypeScript

import { createContext } from 'react';
export const GlobalContext = createContext<{
lang?: string;
setLang?: (value: string) => void;
theme?: string;
setTheme?: (value: string) => void;
}>({});