Private
Public Access
1
0

add react hello world

This commit is contained in:
2016-09-23 22:57:35 +02:00
parent 1e36c82ffa
commit 4883892730
15 changed files with 43728 additions and 25 deletions

View File

@@ -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');
}
}

View 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');
}
}