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

export default class Field extends React.Component<IFieldProps, any> {}