Mostly Front End & UI fixes
This commit is contained in:
8
src/components/ui/Techs.tsx
Normal file
8
src/components/ui/Techs.tsx
Normal file
@ -0,0 +1,8 @@
|
||||
import { getEmployees } from "~/server/functions";
|
||||
import Table from "~/components/ui/Table";
|
||||
|
||||
export default async function Techs() {
|
||||
|
||||
const employees = await getEmployees();
|
||||
return <Table employees={employees} />;
|
||||
};
|
Reference in New Issue
Block a user