Skip to content

Commit

Permalink
Merge pull request #5595 from marmelab/export-simple-form-iterator-props
Browse files Browse the repository at this point in the history
Export SimpleFormIteratorProps interface
  • Loading branch information
fzaninotto committed Nov 27, 2020
2 parents 789776a + 24caeaf commit b02e74f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/ra-ui-materialui/src/form/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
import FormInput from './FormInput';
import FormTab from './FormTab';
import SimpleForm, { SimpleFormProps } from './SimpleForm';
import SimpleFormIterator from './SimpleFormIterator';
import SimpleFormIterator, {
SimpleFormIteratorProps,
} from './SimpleFormIterator';
import TabbedForm, { TabbedFormProps } from './TabbedForm';
import TabbedFormTabs from './TabbedFormTabs';
import Toolbar, { ToolbarProps } from './Toolbar';
import getFormInitialValues from './getFormInitialValues';

export type { SimpleFormProps, TabbedFormProps, ToolbarProps };
export type {
SimpleFormProps,
SimpleFormIteratorProps,
TabbedFormProps,
ToolbarProps,
};

export {
FormInput,
Expand Down

0 comments on commit b02e74f

Please sign in to comment.