0.0.1 • Published 4 months ago

spurs-react-seekbar v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Preview

npm.io

installation

  npm install react-seekbar
  
  yarn add react-seekbar

Usage

docs and example usage can be found here

import { useState } from 'react';
import { Seekbar } from 'react-seekbar';

export default function YourComponent() {
  const [position, setPosition] = useState(0);

  const handleSeek = (position) => {
    setPosition(position);
  };

  return <Seekbar position={position} duration={100000} onSeek={handleSeek} />;
}