import React from 'react'; import { makeStyles } from '@material-ui/core/styles'; import Typography from '@material-ui/core/Typography'; import Slider from '@material-ui/core/Slider'; const useStyles = makeStyles({ root: { width: 300, }, }); const marks = [ { value: 0, label: '0°C', }, { value: 20, label: '20°C', }, { value: 37, label: '37°C', }, { value: 100, label: '100°C', }, ]; function valuetext(value: number) { return `${value}°C`; } function valueLabelFormat(value: number) { return marks.findIndex((mark) => mark.value === value) + 1; } export default function DiscreteSlider() { const classes = useStyles(); return (
Restricted values
); }