import { Table } from "@nextui-org/react";
const CustomTable = () => {
return (
NAME
ROLE
STATUS
Tony Reichert
CEO
Active
Zoey Lang
Technical Lead
Paused
Jane Fisher
Senior Developer
Active
William Howard
Community Manager
Vacation
);
};
export default CustomTable;