RocketChat/Rocket.Chat

View on GitHub
packages/ui-contexts/src/hooks/useCustomSound.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useContext } from 'react';

import type { CustomSoundContextValue } from '../CustomSoundContext';
import { CustomSoundContext } from '../CustomSoundContext';

export const useCustomSound = (): CustomSoundContextValue => useContext(CustomSoundContext);