summaryrefslogtreecommitdiff
path: root/src/leap/bitmask_js/app/components/wizard/stage_layout.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask_js/app/components/wizard/stage_layout.js')
-rw-r--r--src/leap/bitmask_js/app/components/wizard/stage_layout.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/leap/bitmask_js/app/components/wizard/stage_layout.js b/src/leap/bitmask_js/app/components/wizard/stage_layout.js
deleted file mode 100644
index 3154022..0000000
--- a/src/leap/bitmask_js/app/components/wizard/stage_layout.js
+++ /dev/null
@@ -1,37 +0,0 @@
-import React from 'react'
-
-class StageLayout extends React.Component {
-
- static get defaultProps() {return{
- title: 'untitled',
- subtitle: null,
- buttons: null
- }}
-
- constructor(props) {
- super(props)
- }
-
- render() {
- let subtitle = null
- if (this.props.subtitle) {
- subtitle = <span>{this.props.subtitle}</span>
- }
- return(
- <div className="stage">
- <div className="header">
- {this.props.title}
- {subtitle}
- </div>
- <div className="body">
- {this.props.children}
- </div>
- <div className="footer">
- {this.props.buttons}
- </div>
- </div>
- )
- }
-}
-
-export default StageLayout \ No newline at end of file