React hook that resolves to true whenever any headphones are connected.
Compatibility:
function HeadphoneBadge() { const { result: connected } = useIsHeadphonesConnected(); return connected ? <Badge text="Headphones" /> : null;} Copy
function HeadphoneBadge() { const { result: connected } = useIsHeadphonesConnected(); return connected ? <Badge text="Headphones" /> : null;}
React hook that resolves to true whenever any headphones are connected.
Compatibility:
