blob: f39c7ebc387feb316ebf4ba9ec037ee7d22062dd (
plain)
1
2
3
4
5
6
7
8
9
|
import type { MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [{ title: "Albatross.swift" }];
};
export default function Index() {
return <p>iOSDC 2024 Albatross.swift</p>;
}
|