mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
53470fc476
* feat: add basic css for title feat: add basic Carousel structure feat: modify some card with mobile mode feat: style change for theme feat: Extract public styles and improve some styles fix: Fix code loss caused by handling conflicts * feat: change the theme to carousel with image
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface SiteContextProps {
|
|
isMobile: boolean;
|
|
}
|
|
|
|
const SiteContext = React.createContext<SiteContextProps>({
|
|
isMobile: false,
|
|
});
|
|
|
|
export default SiteContext;
|