mirror of https://github.com/franjsco/tick3t
refactor: button component
This commit is contained in:
parent
e3848b4c2d
commit
b3166a710e
|
@ -1,4 +1,4 @@
|
||||||
import React, { Component } from 'react';
|
import React from 'react';
|
||||||
import {
|
import {
|
||||||
Button as ButtonBootstrap
|
Button as ButtonBootstrap
|
||||||
} from 'reactstrap';
|
} from 'reactstrap';
|
||||||
|
@ -8,26 +8,17 @@ const style = {
|
||||||
backgroundImage: 'linear-gradient(to left, #0eaed3, #8346f6)'
|
backgroundImage: 'linear-gradient(to left, #0eaed3, #8346f6)'
|
||||||
};
|
};
|
||||||
|
|
||||||
class Button extends Component {
|
const Button = (props) => {
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
|
|
||||||
this.state = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
return (
|
||||||
<ButtonBootstrap
|
<ButtonBootstrap
|
||||||
onClick={this.props.onClick}
|
onClick={props.onClick}
|
||||||
tag={this.props.tag}
|
tag={props.tag}
|
||||||
to={this.props.to}
|
to={props.to}
|
||||||
style={style}
|
style={style}
|
||||||
>
|
>
|
||||||
{this.props.children}
|
{props.children}
|
||||||
</ButtonBootstrap>
|
</ButtonBootstrap>
|
||||||
|
)
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Button;
|
export default Button;
|
Loading…
Reference in New Issue