blob: 5d2df13cef4cde74fff11f5857e5708d7cf97e90 (
plain)
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
41
42
43
44
|
import React from "react";
import { Nav } from "react-bootstrap";
import { useHistory, useRouteMatch } from "react-router";
const AdminSubPage: React.FC = ({ children }) => {
const match = useRouteMatch<{ name: string }>();
const history = useHistory();
const name = match.params.name;
function toggle(newTab: string): void {
history.push(`/admin/${newTab}`);
}
return (
<>
<Nav variant="tabs">
<Nav.Item>
<Nav.Link
active={name === "users"}
onClick={() => {
toggle("users");
}}
>
Users
</Nav.Link>
</Nav.Item>
<Nav.Item>
<Nav.Link
active={name === "more"}
onClick={() => {
toggle("more");
}}
>
More
</Nav.Link>
</Nav.Item>
</Nav>
{children}
</>
);
};
export default AdminSubPage;
|