('');
+
+ const options = props.options.map((option, key) => {
+ return (
+
+ {option}
+
+
+ );
+ });
+
+ return (
+
+
+ setSelected(e.detail.value)}>
+ {options}
+
+
+
+ )
+}
+
+export default Options;
\ No newline at end of file
diff --git a/src/pages/Quiz/Quiz.module.scss b/src/pages/Quiz/Quiz.module.scss
new file mode 100644
index 0000000..e85c3c2
--- /dev/null
+++ b/src/pages/Quiz/Quiz.module.scss
@@ -0,0 +1,3 @@
+.container {
+ // margin: 5rem;
+}
\ No newline at end of file
diff --git a/src/pages/Quiz/Quiz.tsx b/src/pages/Quiz/Quiz.tsx
new file mode 100644
index 0000000..7e979f8
--- /dev/null
+++ b/src/pages/Quiz/Quiz.tsx
@@ -0,0 +1,20 @@
+import { IonCheckbox, IonItem, IonLabel, IonPage, IonRadio } from '@ionic/react';
+import Options from './Options';
+import styles from './Quiz.module.scss';
+
+const options: string[] = [
+ "System.out.println(“Hello, how are you?”);",
+ "println('Hello, how are you?');",
+ "out.print(Hello, how are you?);",
+ "System.out.println(Hello, how are you?);"
+]
+
+const Quiz: React.FC = () => {
+ return (
+
+
+
+ );
+}
+
+export default Quiz;
\ No newline at end of file
diff --git a/src/pages/interviewRounds/Steps.module.scss b/src/pages/interviewRounds/Steps.module.scss
index cb86c45..3ff3c34 100644
--- a/src/pages/interviewRounds/Steps.module.scss
+++ b/src/pages/interviewRounds/Steps.module.scss
@@ -1,5 +1,4 @@
ion-item {
- // background-color: #F7F7F7;
--background: #F7F7F7;
width: 100vw;
border-bottom: 0.2rem solid #ffffff;
diff --git a/src/pages/preliminaryRound/PreliminaryRound.tsx b/src/pages/preliminaryRound/PreliminaryRound.tsx
index 7e3a984..31b6d01 100644
--- a/src/pages/preliminaryRound/PreliminaryRound.tsx
+++ b/src/pages/preliminaryRound/PreliminaryRound.tsx
@@ -38,7 +38,7 @@ const PreliminaryRound: React.FC = () => {
- Done!
+ Start quiz
All the best!