From 6cb3e18dce046aabfc0e02402f9616e3617c199f Mon Sep 17 00:00:00 2001 From: Vasily Inkovskiy <76574837+xxArchitect@users.noreply.github.com> Date: Mon, 11 Jul 2022 08:29:15 -0400 Subject: [PATCH 01/18] Add submit button to the Test.svelte --- app/src/apps/Examinations/Test.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/apps/Examinations/Test.svelte b/app/src/apps/Examinations/Test.svelte index dd5b8659..8527f80d 100644 --- a/app/src/apps/Examinations/Test.svelte +++ b/app/src/apps/Examinations/Test.svelte @@ -4,6 +4,7 @@ import { Header, Question } from "./components"; import Test from "./lib/examinations/Test"; import "./styles.scss"; + import Button from "../../components/Button/Button.svelte"; export let data; @@ -27,4 +28,5 @@ {#each test.questions as question, questionIndex} {/each} +