makearmy-app/app/portal/materials/page.tsx

9 lines
204 B
TypeScript
Raw Normal View History

2025-09-27 18:34:59 -04:00
// app/portal/materials/page.tsx
import MaterialsClient from "./Client";
export const metadata = { title: "MakerDash • Materials" };
2025-09-27 18:34:59 -04:00
export default function Page() {
return <MaterialsClient />;
2025-09-27 14:30:16 -04:00
}