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

{intl.formatMessage(messages.formInstructions)}

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