0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Moved NotAuthorContextMenu to newer syntax

This commit is contained in:
Simon Backx 2022-07-08 13:14:27 +02:00
parent d89ff82582
commit 4ac29fc40a

View file

@ -1,32 +1,18 @@
import React from 'react';
import AppContext from '../../AppContext';
class NotAuthorContextMenu extends React.Component {
static contextType = AppContext;
const NotAuthorContextMenu = (props) => {
const reportComment = (event) => {
// report
props.close();
};
constructor(props) {
super(props);
this.state = {};
this.reportComment = this.reportComment.bind(this);
}
reportComment(event) {
// todo
this.close();
}
close() {
this.props.close();
}
render() {
return (
<button className="text-[14px]" onClick={this.reportComment}>
return (
<div className="flex flex-col">
<button className="text-[14px]" onClick={reportComment}>
Report comment
</button>
);
}
}
</div>
);
};
export default NotAuthorContextMenu;