index.d.ts 221 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
jim's avatar
jim committed
2
export interface IFieldProps {
陈帅's avatar
陈帅 committed
3 4
  label: React.ReactNode;
  value: React.ReactNode;
jim's avatar
jim committed
5
  style?: React.CSSProperties;
6 7
}

jim's avatar
jim committed
8
export default class Field extends React.Component<IFieldProps, any> {}