UNPKG

@b-design/ui-layout

Version:

React component for Alibaba Cloud.

19 lines (18 loc) 317 B
import React from 'react'; /** * @public */ export interface IContainerProps { /** * Container元素的类名。 */ className?: string; /** * Container元素的样式。 */ style?: React.CSSProperties; /** * Container的内容。 */ children?: React.ReactNode; }