Files
my-links/app/controllers/apps_controller.ts
2024-06-02 23:59:57 +02:00

8 lines
172 B
TypeScript

import type { HttpContext } from '@adonisjs/core/http';
export default class AppsController {
index({ inertia }: HttpContext) {
return inertia.render('home');
}
}