makearmy-app/app/portal/laser-settings/page.tsx

9 lines
222 B
TypeScript
Raw Normal View History

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