import React from 'react'; import PropTypes from 'prop-types'; import { useIntl } from '@edx/frontend-platform/i18n'; import AppSettingsModal from 'CourseAuthoring/pages-and-resources/app-settings-modal/AppSettingsModal'; import messages from './messages'; /** * Settings widget for the "edxnotes" Course App. * @param {{onClose: () => void}} props */ const NotesSettings = ({ onClose }) => { const intl = useIntl(); return ( ); }; NotesSettings.propTypes = { onClose: PropTypes.func.isRequired, }; export default NotesSettings;