in with the new
This commit is contained in:
24
src/core/components/clear.jsx
Normal file
24
src/core/components/clear.jsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import React, { Component, PropTypes } from "react"
|
||||
|
||||
export default class Clear extends Component {
|
||||
|
||||
onClick =() => {
|
||||
let { specActions, path, method } = this.props
|
||||
specActions.clearResponse( path, method )
|
||||
specActions.clearRequest( path, method )
|
||||
}
|
||||
|
||||
render(){
|
||||
return (
|
||||
<button className="btn btn-clear opblock-control__btn" onClick={ this.onClick }>
|
||||
Clear
|
||||
</button>
|
||||
)
|
||||
}
|
||||
|
||||
static propTypes = {
|
||||
specActions: PropTypes.object.isRequired,
|
||||
path: PropTypes.string.isRequired,
|
||||
method: PropTypes.string.isRequired,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user