blob: 176ad35aac3003c321b1ea4a6f1aaa00f9fe406e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Link } from "react-router-dom";
export default function Home() {
return (
<div>
<h1>Albatross.swift</h1>
<p>iOSDC 2024</p>
<p>
<Link to="/login/">Login</Link>
</p>
</div>
);
}
|