Spaces:
Build error
Build error
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; | |