State for whom neither want underscore nor uppercase in convention.
Starting a new team project, the decision process of such coding convention can be omitted by not having the problem.
Do the follow in your react project
npm install xexa
yarn add xexa
import React, { useState } from 'react'
import { digs } from 'xexa'
const Foo = () => {
// digs - destructure into get/set
const count = digs(useState(0))
return (
<div>
<h1>Count: {count.get}</h1>
<button onClick={() => {
count.set(count.get + 1)
}}>Increment</button>
</div>
)
}