s4s-editor / src /components /tw-sound-editor-not-supported /sound-editor-not-supported.jsx
soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame
590 Bytes
import React from 'react';
import {FormattedMessage} from 'react-intl';
import styles from './sound-editor-not-supported.css';
const SoundEditorNotSupported = () => (
<div className={styles.container}>
<FormattedMessage
defaultMessage="Sound editor is not supported in this browser."
// eslint-disable-next-line max-len
description="Appears when opening the sound editor in some weird browsers that don't support the proper APIs."
id="tw.soundEditorNotSupported"
/>
</div>
);
export default SoundEditorNotSupported;