index.d.ts 265 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import React from 'react';

export interface StandardFormRowProps {
  title: string;
  last?: boolean;
  block?: boolean;
  grid?: boolean;
  style?: React.CSSProperties;
}

export default class StandardFormRow extends React.Component<StandardFormRowProps, any> {}