mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { Link } from '@inertiajs/react';
|
|
|
|
export default function AppPage() {
|
|
return (
|
|
<div>
|
|
<Link href="/collections/create">Add collection</Link>
|
|
</div>
|
|
);
|
|
}
|