Guest User

Untitled

a guest
Apr 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class App extends Component {
  2. render() {
  3. return (
  4. <Stepper stage={1}>
  5. <Stepper.Progress>
  6. <Stepper.Stage num={1} />
  7. </Stepper.Progress>
  8. <div style={{flex: 1, display: 'flex', flexDirection: 'column'}}>
  9. <Stepper.Header title="Stepper Heading"/>
  10. <Stepper.Steps>
  11. <Stepper.Step num={1} text={"Stage 1"}/>
  12. </Stepper.Steps>
  13. </div>
  14. </Stepper>
  15. );
  16. }
  17. }
Add Comment
Please, Sign In to add comment