<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AppController extends AbstractController
{
/**
* @Route("/{reactRouting}", name="app_home", requirements={"reactRouting"="^(?!api|admin|elfinder|efconnect|_profiler|_wdt|_error).+"}, defaults={"reactRouting": null})
*/
public function index(): Response
{
return $this->render('app/index.html.twig', [
'controller_name' => 'AppController',
]);
}
}