UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

14 lines (13 loc) 362 B
/// <reference types="react" /> import React from 'react'; import { FlexNativeProps } from './PropsType'; export default class Flex extends React.Component<FlexNativeProps, any> { static Item: any; static defaultProps: { direction: string; wrap: string; justify: string; align: string; }; render(): JSX.Element; }