2023-05-06 15:49:37 +08:00
|
|
|
import * as React from 'react';
|
2022-12-19 13:23:28 +08:00
|
|
|
|
|
|
|
export interface SiteContextProps {
|
|
|
|
isMobile: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SiteContext = React.createContext<SiteContextProps>({
|
|
|
|
isMobile: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
export default SiteContext;
|