diff --git a/src/pages/signin/SignInPageLayout/SignInPageLayoutWide.js b/src/pages/signin/SignInPageLayout/SignInPageLayoutWide.js index a1089721e358..baa74be76aef 100755 --- a/src/pages/signin/SignInPageLayout/SignInPageLayoutWide.js +++ b/src/pages/signin/SignInPageLayout/SignInPageLayoutWide.js @@ -26,56 +26,55 @@ const propTypes = { ...withLocalizePropTypes, }; -const SignInPageLayoutWide = (props) => { - const backgroundStyles = [styles.backgroundBlue, styles.backgroundGreen, styles.backgroundOrange, styles.backgroundPink]; - const backgroundStyle = backgroundStyles[_.random(0, 3)]; - return ( - - - - - - - - - {props.shouldShowWelcomeText && ( - - {props.welcomeText} - - )} - - {props.children} - +const backgroundStyles = [styles.backgroundBlue, styles.backgroundGreen, styles.backgroundOrange, styles.backgroundPink]; +const backgroundStyle = backgroundStyles[_.random(0, 3)]; + +const SignInPageLayoutWide = props => ( + + + + + + + - - + {props.shouldShowWelcomeText && ( + + {props.welcomeText} + + )} + + {props.children} + + + - + - ); -}; + +); SignInPageLayoutWide.propTypes = propTypes; SignInPageLayoutWide.displayName = 'SignInPageLayoutWide';