botframework-webchat-component
Version:
React component of botframework-webchat
15 lines (9 loc) • 299 B
JavaScript
import { hooks } from 'botframework-webchat-api';
import React from 'react';
const { useLocalizer } = hooks;
const AudioAttachment = () => {
const localize = useLocalizer();
const label = localize('ATTACHMENT_AUDIO');
return <article>{label}</article>;
};
export default AudioAttachment;