import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import { createSubscribedElement } from '../../UnstatedUtils'; import AppContainer from '../../../services/AppContainer'; import MarkDownSettingContainer from '../../../services/MarkDownSettingContainer'; import PresentationLineBreakOptions from './PresentationLineBreakOptions'; class PresentationForm extends React.Component { render() { const { t } = this.props; return (
{/* TODO GW-220 create function */}
); } } const PresentationFormWrapper = (props) => { return createSubscribedElement(PresentationForm, props, [AppContainer, MarkDownSettingContainer]); }; PresentationForm.propTypes = { t: PropTypes.func.isRequired, // i18next appContainer: PropTypes.instanceOf(AppContainer).isRequired, markDownSettingContainer: PropTypes.instanceOf(MarkDownSettingContainer).isRequired, }; export default withTranslation()(PresentationFormWrapper);