export function ConsentProvider({consent, children}) {
  return (
    <ConsentContext.Provider value={consent}>
      {children}
    </ConsentContext.Provider>