Skip to content

useArray

Nick Wylynko edited this page Nov 17, 2022 · 1 revision
import { useArray } from "react-raw-hooks/hooks/useArray"

Examples

Push to an array

const App = () => {
  const [items, fns] = useArray([5, 6, 7, 8])

  return (
    <div>
      {items.map(n => <span>{n}, </span>)}
      <button onClick={() => fns.push(10)}></button>
    </div>
  )
}
Clone this wiki locally