Nest all content into snippets
This commit is contained in:
35
snippets/react/s/uncontrolled-input.md
Normal file
35
snippets/react/s/uncontrolled-input.md
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
title: Uncontrolled input field
|
||||
type: snippet
|
||||
language: react
|
||||
tags: [components,input]
|
||||
cover: digital-nomad-15
|
||||
dateModified: 2020-11-03T21:08:39+02:00
|
||||
---
|
||||
|
||||
Renders an uncontrolled `<input>` element that uses a callback function to inform its parent about value updates.
|
||||
|
||||
- Use the `defaultValue` passed down from the parent as the uncontrolled input field's initial value.
|
||||
- Use the `onChange` event to fire the `onValueChange` callback and send the new value to the parent.
|
||||
|
||||
```jsx
|
||||
const UncontrolledInput = ({ defaultValue, onValueChange, ...rest }) => {
|
||||
return (
|
||||
<input
|
||||
defaultValue={defaultValue}
|
||||
onChange={({ target: { value } }) => onValueChange(value)}
|
||||
{...rest}
|
||||
/>
|
||||
);
|
||||
};
|
||||
```
|
||||
|
||||
```jsx
|
||||
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||
<UncontrolledInput
|
||||
type="text"
|
||||
placeholder="Insert some text here..."
|
||||
onValueChange={console.log}
|
||||
/>
|
||||
);
|
||||
```
|
||||
Reference in New Issue
Block a user