import React, {createContext, PropsWithChildren, useContext} from 'react' export type ConfigContextLink = { title: string href: string isActive?: boolean isExternal?: boolean } export type ConfigContextValue = { headerLinks: ConfigContextLink[] sidebarLinks: ConfigContextLink[] basePath: string } export const ConfigContext = createContext(null) export const useConfig = (): ConfigContextValue => { const context = useContext(ConfigContext) if (!context) { throw new Error('useConfig must be used within a ConfigContextProvider') } return context } type ConfigContextProviderProps = PropsWithChildren<{value: ConfigContextValue}> export const ConfigContextProvider = ({children, value}: ConfigContextProviderProps) => { return {children} }