mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-12 08:42:38 +02:00
10 lines
No EOL
216 B
TypeScript
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 />;
|
|
} |