mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
8 lines
349 B
TypeScript
8 lines
349 B
TypeScript
import type { InferPageProps } from '@adonisjs/inertia/types';
|
|
import ContentLayout from '~/components/layouts/content_layout';
|
|
import type AppsController from '../../app/controllers/apps_controller';
|
|
|
|
export default function Home(_: InferPageProps<AppsController, 'index'>) {
|
|
return <ContentLayout>blablabla welcome to MyLinks</ContentLayout>;
|
|
}
|