You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
546 B
18 lines
546 B
import './GridContent.less';
|
|
import React, { CSSProperties } from 'react';
|
|
import { PureSettings } from '../defaultSettings';
|
|
interface GridContentProps {
|
|
contentWidth?: PureSettings['contentWidth'];
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
style?: CSSProperties;
|
|
prefixCls?: string;
|
|
}
|
|
/**
|
|
* This component can support contentWidth so you don't need to calculate the width
|
|
* contentWidth=Fixed, width will is 1200
|
|
* @param props
|
|
*/
|
|
declare const GridContent: React.SFC<GridContentProps>;
|
|
export default GridContent;
|