Version: v4.3.0use-queue-stateAbout#A React hook that manages state in the form of a queueInstallation#npm install --save @rooks/use-queue-stateCopyImporting the hook#import useQueueState from "@rooks/use-queue-state"CopyUsage#function Demo() { // here list is still 1,2,3 // controls contains utils to change the queue; const [list, controls] = useQueueState([1,2,3]); const {enqueue, peek, dequeue, length} = controls; // enqueue(1) // dequeue() // peek() // This will render items in FIFO order return <div> {list.map(item => <span>{item}</span>)} </div>} render(<Demo/>)CopyCodesandbox Examples#Basic Usage#Join Bhargav's discord server#You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.