Skip to content

Commit

Permalink
Merge pull request #1444 from rvsia/fix-fielprovider-typo
Browse files Browse the repository at this point in the history
Fix fielprovider typo
  • Loading branch information
Hyperkid123 authored Feb 19, 2024
2 parents f198c9f + 9ddaebc commit 271e466
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Or you can import [FieldProvider](/components/field-provider) component from Dat
```jsx
import { FieldProvider } from '@data-driven-forms/react-form-renderer'

<FielProvider Component={TextField}>
<FieldProvider Component={TextField}>

// or

<FielProvider render={({input, meta, ...props}) => <TextField {...props} input={input} meta={meta}>}>
<FieldProvider render={({input, meta, ...props}) => <TextField {...props} input={input} meta={meta}>}>
```

## Non-input form components
Expand Down

0 comments on commit 271e466

Please sign in to comment.