File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/components/LoginPanel Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export default class LoginPanel extends Component {
2020 disabled,
2121 version,
2222 showSpinner,
23+ children,
2324 } = this . props ;
2425 const spinner = showSpinner ?
2526 < SpinnerOverlay /> :
@@ -41,6 +42,7 @@ export default class LoginPanel extends Component {
4142 </ button >
4243 { versionDisplay }
4344 { spinner }
45+ { children }
4446 </ div >
4547 ) ;
4648 }
@@ -55,11 +57,13 @@ LoginPanel.propTypes = {
5557 disabled : PropTypes . bool ,
5658 version : PropTypes . string ,
5759 showSpinner : PropTypes . bool ,
60+ children : PropTypes . node ,
5861} ;
5962
6063LoginPanel . defaultProps = {
6164 className : null ,
6265 disabled : false ,
6366 version : undefined ,
64- showSpinner : false
67+ showSpinner : false ,
68+ children : undefined ,
6569} ;
You can’t perform that action at this time.
0 commit comments