15 lines
191 B
TypeScript
15 lines
191 B
TypeScript
"use client";
|
|
|
|
import ProjectsGrid from "@/components/ProjectsGrid";
|
|
|
|
|
|
export default function Project() {
|
|
return (
|
|
|
|
<main>
|
|
<ProjectsGrid />
|
|
</main>
|
|
|
|
);
|
|
}
|