antd-mobile
Version:
基于 React 的移动设计规范实现
14 lines (13 loc) • 350 B
TypeScript
/// <reference types="react" />
import React from 'react';
import { FlexProps } from './PropsType';
export default class Flex extends React.Component<FlexProps, any> {
static Item: any;
static defaultProps: {
direction: string;
wrap: string;
justify: string;
align: string;
};
render(): JSX.Element;
}