Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import React, {Component} from 'react';
  2. import { SButton } from './styled/Button';
  3.  
  4. export default class Button extends Component {
  5. render() {
  6.  
  7. return (
  8. <SButton>
  9. {this.props.children}
  10. </SButton>
  11. );
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement