// useLibs
// noPage

import useSafeState from "esoftplay/state"



export default function m(): [() => void, number] {
  const [a, b] = useSafeState(0)
  const c = () => b(a + 1)
  return [c, a]
}