mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat(react): port volume popover and slider styling into skin presets (#667)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
ebb75f5863
commit
6a1eddadd0
@@ -0,0 +1,10 @@
|
||||
import { useReducer } from 'react';
|
||||
|
||||
export function useForceRender() {
|
||||
const [, forceRender] = useReducer((c: number) => c + 1, 0);
|
||||
return forceRender;
|
||||
}
|
||||
|
||||
export namespace useForceRender {
|
||||
export type Result = () => void;
|
||||
}
|
||||
Reference in New Issue
Block a user