import { Meta } from '@storybook/blocks'; # useAudioOutputs The `useAudioOutputs` hook returns a list of the user's available audio output devices and the currently selected audio output device identified by its `deviceId` > Please note that, in Firefox and Safari, the browser does not list the `audiooutput` media devices yet. We have an [FAQ](https://aws.github.io/amazon-chime-sdk-js/modules/faqs.html#i-am-unable-to-select-an-audio-output-device-in-some-browsers-is-this-a-known-issue) in > `amazon-chime-sdk-js` with more information on respective bugs for Firefox and Safari browser. ## Return Value ```javascript { devices: [{ deviceId: string; label: string; }], // The current selected audio output device identified by its `deviceId` selectedDevice: string | null, } ``` ## Importing ```javascript import { useAudioOutputs } from 'amazon-chime-sdk-component-library-react'; ``` ## Usage The hook depends on the `DevicesProvider`. If you are using `MeetingProvider`, it is rendered by default. ```jsx import React from 'react'; import { MeetingProvider, useAudioOutputs, } from 'amazon-chime-sdk-component-library-react'; const App = () => ( ); const MyChild = () => { const { devices, selectedDevice } = useAudioOutputs(); const items = devices.map((device) => (
  • {device.label}
  • )); return (

    Current Selected Audio Output Device: {selectedDevice}

    Devices

    ); }; ``` ### Dependencies - `DevicesProvider`