mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import type { HttpContext } from '@adonisjs/core/http';
|
|
|
|
export default class AppsController {
|
|
index({ inertia }: HttpContext) {
|
|
return inertia.render('home');
|
|
}
|
|
}
|