rowboat/apps/rowboat/app/projects/[projectId]/simulation/page.tsx
2025-02-13 13:58:00 +05:30

10 lines
No EOL
216 B
TypeScript

import { Metadata } from "next";
import SimulationApp from "./app";
export const metadata: Metadata = {
title: "Project simulation",
};
export default function SimulationPage() {
return <SimulationApp />;
}