import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class CustomizeKibelaLayout extends React.Component { render() { return (
); } } CustomizeKibelaLayout.propTypes = { t: PropTypes.func.isRequired, // i18next currentLayout: PropTypes.string.isRequired, onChangeLayout: PropTypes.func.isRequired, }; export default withTranslation()(CustomizeKibelaLayout);