Decent CS2 player
"music" listener
github.com/orgs/communi...
github.com/orgs/communi...
if (whateverEnabled) {
useWhatever();
}
Instead of having useWhatever support an enabled boolean option.
if (whateverEnabled) {
useWhatever();
}
Instead of having useWhatever support an enabled boolean option.
useWhatever()
would become
useIdentifiedHook(generatedId, () => useWhatever())
useIdentifiedHook would give react to identify a hook in another way than call order, but you'd never have to use it yourself explicitly.
useWhatever()
would become
useIdentifiedHook(generatedId, () => useWhatever())
useIdentifiedHook would give react to identify a hook in another way than call order, but you'd never have to use it yourself explicitly.