- Add package.json with development and production dependencies - Create postcss.config.js for Tailwind CSS integration - Implement AdminController for handling admin routes - Add admin index template with React root element - Create base template for consistent layout - Configure TypeScript with tsconfig.json - Set up Webpack configuration for asset management
17 lines
490 B
PHP
17 lines
490 B
PHP
<?php
|
|
|
|
namespace App\Admin\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
class AdminController extends AbstractController
|
|
{
|
|
#[Route('/admin/{reactRouting}', name: 'admin_app', requirements: ['reactRouting' => '.*'], defaults: ['reactRouting' => ''])]
|
|
public function index(): Response
|
|
{
|
|
return $this->render('admin/index.html.twig');
|
|
}
|
|
}
|