Skip to content

Instantly share code, notes, and snippets.

@abadfish
Created July 13, 2021 19:49
Show Gist options
  • Save abadfish/f6bebfbeac545d14edd4d8bcf7b42b57 to your computer and use it in GitHub Desktop.
Save abadfish/f6bebfbeac545d14edd4d8bcf7b42b57 to your computer and use it in GitHub Desktop.
import React, { useState, useCallback } from 'react'
export const useStatePair = (initial) => {
const [[prev, current], setPair] = useState([undefined, initial])
const setValue = useCallback(
next => setPair([current, next]),
[current]
)
return [prev, current, setValue]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment