File size: 373 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { createContext } from 'react';
import type { DashboardDataContextInterface } from './types';
const DashboardDataContext = createContext< DashboardDataContextInterface >( {
verifiedContacts: {
emails: [],
phoneNumbers: [],
refetchIfFailed: () => {
return undefined;
},
},
products: [],
isLargeScreen: true,
} );
export default DashboardDataContext;
|