<?php
namespace App\Controller\App;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AppDashboardController extends AbstractController
{
#[Route('/', name: 'hf_app_dashboard')]
public function index(): Response
{
return $this->render('app/dashboard.html.twig');
}
}