mirror of
https://github.com/rjNemo/MERN_sample_app
synced 2026-06-10 10:36:39 +00:00
17 lines
361 B
JavaScript
17 lines
361 B
JavaScript
import React from "react";
|
|
import { Container } from "reactstrap";
|
|
|
|
const styles = {
|
|
root: {
|
|
paddingTop: "1rem",
|
|
paddingBottom: "1rem",
|
|
},
|
|
};
|
|
export default function AdminPage() {
|
|
return (
|
|
<Container style={styles.root}>
|
|
<h1>Admin</h1>
|
|
<p>Restricted area! Only users with the admin role are authorized.</p>
|
|
</Container>
|
|
);
|
|
}
|