File size: 794 Bytes
0dd6a66
0d37b12
0dd6a66
 
 
 
 
fdbdf19
0dd6a66
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Container, Row, Col } from "react-bootstrap";
import AdminTemplate from "../../templates/AdminTemplate";

export default function AdminStaffPage() {
    return (
        <AdminTemplate content={
            (
                <Container className='d-flex text-center align-items-center justify-content-center' style={{minHeight: '80vh' }}>
                    <Row>
                        <Col xs={12}>
                            <h1>This is a demo staff page</h1>
                        </Col>
                        <Col xs={12}>
                            <h3>In the future, we are about to view staffs info, add, edit, and remove staffs in this page</h3>
                        </Col>
                    </Row>
                </Container>
            )
        } />
    );
}