import React from 'react'; import { getConfig } from '@edx/frontend-platform'; import { Hyperlink, Image } from '@edx/paragon'; import PropTypes from 'prop-types'; import LargeScreenLeftLayout from './LargeLeftLayout'; const LargeLayout = ({ experimentName, isRegistrationPage }) => (
{getConfig().SITE_NAME}
); LargeLayout.defaultProps = { experimentName: '', isRegistrationPage: false, }; LargeLayout.propTypes = { experimentName: PropTypes.string, isRegistrationPage: PropTypes.bool, }; export default LargeLayout;