12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import InProgress from "@/components/InProgress";
|
|
|
|
export default async function ProjectsPage() {
|
|
return (
|
|
<div>
|
|
<h1>Learn more about my work</h1>
|
|
{/* @ts-ignore server component */}
|
|
{/* <InProgress /> */}
|
|
</div>
|
|
)
|
|
}
|