import { createContext } from 'react'; import type { Features } from 'types'; export interface FeaturesContextValue { features: Features; } const FeaturesContextDefaultValue = {} as FeaturesContextValue; export const FeaturesContext = createContext(FeaturesContextDefaultValue);