Guest User

Untitled

a guest
Jun 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import React, { Component } from 'react';
  2.  
  3. class View extends Component {
  4. render() {
  5. return (
  6. <view
  7. style={{
  8. display: 'flex',
  9. flexDirection: 'column',
  10. ...this.props.style
  11. }}
  12. >
  13. {this.props.children}
  14. </view>
  15. );
  16. }
  17. }
  18.  
  19. export default View;
Add Comment
Please, Sign In to add comment