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