|
|
|
|
1
|
import * as React from 'react';
|
1
|
import * as React from 'react';
|
2
|
import { Remove as RemoveIcon, Add as AddIcon } from '@mui/icons-material';
|
2
|
import { Remove as RemoveIcon, Add as AddIcon } from '@mui/icons-material';
|
3
|
import {
|
3
|
import {
|
4
|
- Card,CardContent,Avatar,Checkbox,List,Tooltip,Fade,Slide,
|
|
|
|
|
4
|
+ Card,CardContent,Avatar,Checkbox,List,Tooltip,Fade,
|
5
|
ListItem,ListItemButton,ListItemIcon,ListItemText,
|
5
|
ListItem,ListItemButton,ListItemIcon,ListItemText,
|
6
|
} from '@mui/material'
|
6
|
} from '@mui/material'
|
7
|
|
7
|
|
|
|
|
|
119
|
);
|
119
|
);
|
120
|
}
|
120
|
}
|
121
|
|
121
|
|
122
|
-export function Question({quiz, index, current, progress}) {
|
|
|
|
|
122
|
+export function Question({quiz, index, current}) {
|
123
|
let { instrucciondepregunta, respuestas,id } = quiz
|
123
|
let { instrucciondepregunta, respuestas,id } = quiz
|
124
|
let checked = index === current;
|
124
|
let checked = index === current;
|
125
|
|
125
|
|