ts ki mkc

This commit is contained in:
Om Lanke
2025-07-04 23:08:09 +05:30
parent 57e25f663b
commit 8acc3e6955
19 changed files with 1691 additions and 102 deletions

View File

@@ -0,0 +1,7 @@
import { db, companies } from '@workspace/db';
import NewJobForm from './new-job-form';
export default async function NewJobPage() {
const companyList = await db.select().from(companies);
return <NewJobForm companies={companyList.map((c) => ({ id: c.id, name: c.name }))} />;
}