14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import React from 'react';
|
|
|
|
// 定义Context类型
|
|
interface FamilyContextType {
|
|
handleGrandchildTrigger: (data: any) => void;
|
|
}
|
|
|
|
// 创建Context对象
|
|
const FamilyContext = React.createContext < FamilyContextType > ({
|
|
handleGrandchildTrigger: () => { }
|
|
});
|
|
|
|
export default FamilyContext;
|