tosanoob's picture
Update: add api menu&feed
fdbdf19
raw
history blame
772 Bytes
import { Container, Row, Col } from "react-bootstrap";
import AdminTemplate from "../templates/AdminTemplate";
export default function AdminFeedPage() {
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 feed page</h1>
</Col>
<Col xs={12}>
<h3>In the future, we hope to view list of feed, add, edit or remove feeds.</h3>
</Col>
</Row>
</Container>
)
} />
);
}