import { createContext, useContext } from 'react'; export const BrandContext = createContext | null>(null); export const useBrand = () => { const brandObject = useContext(BrandContext); const errorMessage = `GEL components require that you wrap your application with the brand provider from @westpac/core.`; if (!brandObject) { throw new Error(errorMessage); } return brandObject; };