11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import InProgress from "@/components/InProgress";
|
|
|
|
export default async function ProjectsPage() {
|
|
return (
|
|
<div>
|
|
<h1>Learn more about my work</h1>
|
|
<InProgress />
|
|
</div>
|
|
)
|
|
}
|