Following

This commit is contained in:
2023-12-08 07:21:06 +01:00
parent 49bc4f64fb
commit 3660e1cd7c
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ function GameScene({theme,id}) {
useEffect(() => { useEffect(() => {
post('https://saucisson.justw.tf/api/games/create/'+id,{},token) post('https://saucisson.justw.tf/api/games/create/'+id,{},token)
.then(res => { .then(res => {
console.log(res.JSON);
setData(res.JSON); setData(res.JSON);
}) })
.catch(err => console.log(err)); .catch(err => console.log(err));

View File

@@ -1,6 +1,6 @@
function QuestionBox({question}) { function QuestionBox({question}) {
return( return(
<div className="fixed top-4 left-44 right-4 h-42 bg-slate-300 rounded-md"> <div className="fixed top-4 left-32 right-4 h-42 bg-slate-300 rounded-md">
{question} {question}
</div> </div>
); );