Update snippet titles

This commit is contained in:
Chalarangelo
2022-02-09 09:50:57 +02:00
parent b15a2e895e
commit 812ba2ad27
74 changed files with 77 additions and 78 deletions

View File

@ -1,5 +1,5 @@
---
title: Slider
title: Uncontrolled range input
tags: components,input,beginner
firstSeen: 2019-03-02T10:20:55+02:00
lastUpdated: 2020-11-25T20:46:35+02:00
@ -12,7 +12,7 @@ Renders an uncontrolled range input element that uses a callback function to pas
- Use the `onChange` event to fire the `onValueChange` callback and send the new value to the parent.
```jsx
const Slider = ({
const Slider = ({
min = 0,
max = 100,
defaultValue,