import React from 'react'; import { useIntl } from '@edx/frontend-platform/i18n'; import PropTypes from 'prop-types'; import FormikControl from 'CourseAuthoring/generic/FormikControl'; import messages from './messages'; const LiveCommonFields = ({ values, }) => { const intl = useIntl(); return ( <>

{intl.formatMessage(messages.formInstructions)}

); }; LiveCommonFields.propTypes = { values: PropTypes.shape({ consumerKey: PropTypes.string, consumerSecret: PropTypes.string, launchUrl: PropTypes.string, launchEmail: PropTypes.string, }).isRequired, }; export default LiveCommonFields;