add react hello world
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Mine\SeekerBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
|
||||
class DefaultController extends Controller
|
||||
{
|
||||
public function indexAction()
|
||||
{
|
||||
return $this->render('MineSeekerBundle:Default:index.html.twig');
|
||||
}
|
||||
}
|
||||
13
src/Mine/SeekerBundle/Controller/GameController.php
Normal file
13
src/Mine/SeekerBundle/Controller/GameController.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Mine\SeekerBundle\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
|
||||
class GameController extends Controller
|
||||
{
|
||||
public function playAction()
|
||||
{
|
||||
return $this->render('MineSeekerBundle:Game:play.html.twig');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user