Implemented a simple page to view the currently registered users

This commit is contained in:
Tiago Ribeiro
2023-04-14 12:34:56 +01:00
parent 399e222791
commit f88db929f4
16 changed files with 433 additions and 32 deletions

View File

@@ -50,7 +50,7 @@ export default function Writing({exam, showSolutions = false, onFinish}: Props)
<div className="flex flex-col max-w-2xl gap-2">
<span>{exam.text.info}</span>
<span className="font-bold ml-8">
{exam.text.prompt.split("\n").map((line, index) => (
{exam.text.prompt.split("\\n").map((line, index) => (
<Fragment key={index}>
<span>{line}</span>
<br />