blob: 62d66b531270c8a4f6d74450671c2b23a48579af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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>
);
};
|