2023-12-07 22:56:31 +00:00
|
|
|
import { FirstEntry } from "./FirstEntry"
|
|
|
|
import { ResultSettings } from "./ResultSettings"
|
2023-12-21 08:29:51 +00:00
|
|
|
import { decrementCurrentStep } from "@root/quizes/actions";
|
|
|
|
import { Box, Button } from "@mui/material";
|
|
|
|
import ArrowLeft from "@icons/questionsPage/arrowLeft"
|
2023-12-07 21:30:26 +00:00
|
|
|
|
2023-12-07 22:56:31 +00:00
|
|
|
export const ResultPage = () => {
|
2023-12-07 21:30:26 +00:00
|
|
|
return (
|
2023-12-21 08:29:51 +00:00
|
|
|
<>
|
2023-12-07 22:56:31 +00:00
|
|
|
<FirstEntry />
|
2023-12-21 08:29:51 +00:00
|
|
|
<ResultSettings />
|
|
|
|
<Box sx={{ display: "flex", justifyContent: "flex-start", alignItems: "center", gap: "8px", mt: "30px" }}>
|
|
|
|
<Button
|
|
|
|
variant="outlined"
|
|
|
|
sx={{
|
|
|
|
padding: "10px 20px",
|
|
|
|
borderRadius: "8px",
|
|
|
|
height: "44px",
|
|
|
|
}}
|
|
|
|
onClick={decrementCurrentStep}
|
|
|
|
>
|
|
|
|
<ArrowLeft />
|
|
|
|
</Button>
|
|
|
|
</Box>
|
|
|
|
</>
|
|
|
|
)
|
2023-12-07 21:30:26 +00:00
|
|
|
}
|