-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathBoardModerator.js
40 lines (33 loc) · 906 Bytes
/
BoardModerator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React, { useState, useEffect } from "react";
import UserService from "../services/user.service";
import EventBus from "../common/EventBus";
const BoardModerator = () => {
const [content, setContent] = useState("");
useEffect(() => {
UserService.getModeratorBoard().then(
(response) => {
setContent(response.data);
},
(error) => {
const _content =
(error.response &&
error.response.data &&
error.response.data.message) ||
error.message ||
error.toString();
setContent(_content);
if (error.response && error.response.status === 401) {
EventBus.dispatch("logout");
}
}
);
}, []);
return (
<div className="container">
<header className="jumbotron">
<h3>{content}</h3>
</header>
</div>
);
};
export default BoardModerator;