UNPKG

antd-mobile-alita

Version:

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

11 lines (10 loc) 291 B
import * as React from 'react'; export interface ViewProps<T> extends React.HTMLProps<T> { Component?: string; } export default class View extends React.Component<ViewProps<HTMLDivElement>, any> { static defaultProps: { Component: string; }; render(): JSX.Element; }