forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
} | ||
|
||
h1{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import React from 'react'; | ||
import './Home.css'; | ||
import React from "react"; | ||
import "./Home.css"; | ||
import { Link } from "react-router-dom"; | ||
|
||
const Home = () => { | ||
return ( | ||
<div className='games-container'> | ||
<h1>Bienvenido a WIQ. Selecciona un modo de juego</h1> | ||
<ul> | ||
<a href="clasico">Clásico</a> | ||
<a href="bateria">Batería de sabios</a> | ||
<a href="descartando">Descartando</a> | ||
<a href="pregunta">La pregunta caliente</a> | ||
<a href="descubriendo">Descubriendo ciudades</a> | ||
</ul> | ||
</div> | ||
) | ||
} | ||
return ( | ||
<div className="games-container"> | ||
<h1>Bienvenido a WIQ. Selecciona un modo de juego</h1> | ||
<ul> | ||
<a href="clasico">Clásico</a> | ||
<a href="bateria">Batería de sabios</a> | ||
<a href="descartando">Descartando</a> | ||
<a href="pregunta">La pregunta caliente</a> | ||
<a href="descubriendo">Descubriendo ciudades</a> | ||
</ul> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Home; | ||
export default Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import React from 'react'; | ||
import './WrongRoute.css'; | ||
import React from "react"; | ||
import "./WrongRoute.css"; | ||
|
||
const WrongRoute = () => { | ||
return( | ||
<div className="notFoundContainer"> | ||
<h1>404</h1> | ||
<p>Página no encontrada</p> | ||
</div> | ||
); | ||
} | ||
return ( | ||
<div className="notFoundContainer"> | ||
<h1>404</h1> | ||
<p>Página no encontrada</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default WrongRoute; | ||
export default WrongRoute; |