cleanup
This commit is contained in:
18
src/app/cv/page.tsx
Normal file
18
src/app/cv/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { getCvCategories } from "~/server/db/query"
|
||||
|
||||
export default async function CvPage() {
|
||||
const cvCategories = await getCvCategories();
|
||||
return (
|
||||
<div>
|
||||
{cvCategories.map((category) => {
|
||||
return (
|
||||
<div key={category.id}>
|
||||
<div>
|
||||
{category.name}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user