import React, {createContext, PropsWithChildren, useContext} from 'react' import {GovernanceManager} from '../../manager' type ContextType = { manager: GovernanceManager } const Context = createContext(null) export const useGovernance = () => { const context = useContext(Context) if (!context) { throw new Error('useGovernance must be used within a GovernanceProvider') } return context } type ProviderProps = PropsWithChildren<{ manager: GovernanceManager }> export const GovernanceProvider = ({manager, children}: ProviderProps) => { return {children} }