mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
19 lines
487 B
TypeScript
19 lines
487 B
TypeScript
import { Head } from '@inertiajs/react';
|
|
|
|
export default function Home(props: { version: number }) {
|
|
return (
|
|
<>
|
|
<Head title="Homepage" />
|
|
|
|
<div className="container">
|
|
<div className="title">AdonisJS {props.version} x Inertia x React</div>
|
|
|
|
<span>
|
|
Learn more about AdonisJS and Inertia.js by visiting the{' '}
|
|
<a href="https://docs.adonisjs.com/guides/inertia">AdonisJS documentation</a>.
|
|
</span>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|