button component

This commit is contained in:
SpikeHD
2022-05-08 18:10:30 -07:00
parent 28c745c853
commit f85674dd25
5 changed files with 89 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
import React from 'react'
import './BigButton.css'
interface IProps {
text: string;
onClick: () => any;
id: string;
}
interface IState {
text: string;
}
export default class BigButton extends React.Component<IProps, IState> {
constructor(props: { text: string, onClick: () => any, id: string }) {
super(props)
this.state = {
text: props.text
}
this.handleClick = this.handleClick.bind(this)
}
handleClick() {
this.props.onClick()
}
render() {
return (
<div className="BigButton" onClick={this.handleClick} id={this.props.id}>
<div className="BigButtonText">{this.state.text}</div>
</div>
)
}
}