Foxnouns.NET/Foxnouns.Frontend/app/routes/_index.tsx

14 lines
227 B
TypeScript
Raw Normal View History

import type { MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [{ title: "pronouns.cc" }];
};
export default function Index() {
return (
2024-09-10 20:33:22 +02:00
<div>
<h1>pronouns.cc</h1>
</div>
);
}