<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class IndexController extends AbstractController
{
/**
* @Route("/", name="app_index", priority="10")
*/
public function index(): Response
{
return $this->render(
'external/web_impact_calculator/index.html.twig',
);
}
}