mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface SiteContextProps {
|
|
isMobile: boolean;
|
|
direction: string;
|
|
}
|
|
|
|
const SiteContext = React.createContext<SiteContextProps>({
|
|
isMobile: false,
|
|
direction: 'ltr',
|
|
});
|
|
|
|
export default SiteContext;
|