|
|
@@ -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 ( |
|
|
|
<div className={styles.container}> |
|
|
|
<Options options={options} /> |
|
|
|
</div> |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
export default Quiz; |