18 lines
503 B
JavaScript
18 lines
503 B
JavaScript
import React from "react";
|
|
import styles from "./styles.module.css";
|
|
import TopHeader from "../components/topHeader/TopHeader";
|
|
import globalStyle from "../globalStyle.module.css";
|
|
const AgentsPage = () => {
|
|
return (
|
|
<div className={globalStyle.section}>
|
|
<div className={globalStyle.mainContainer}>
|
|
<div className={globalStyle.container}>
|
|
<TopHeader buttonText="Add Agents" topbarTitle="Agents" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AgentsPage;
|