File size: 323 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import PropTypes from 'prop-types';
import React from 'react';
// Basic layout component that just renders the primary content
function ReauthLayout( { primary } ) {
return <div className="reauth-required-layout">{ primary }</div>;
}
ReauthLayout.propTypes = {
primary: PropTypes.node,
};
export default ReauthLayout;
|