📄 IndividualScoreElement.js
/home/palash/git/site/node_modules/new_site/src/components/study/IndividualScoreElement.js
Language: js • Lines: 12
import { Col, Row } from "react-bootstrap"

export default function Score(props) {
    return <><Row>
        <Col><span>{props.elem}: {props.score}</span></Col>
    </Row>
        <Row xs={2}>
            <Col><span style={{ color: 'lightgreen' }}>Correct: {props.correct}</span></Col>
            <Col><span style={{ color: 'red' }}>Wrong: {props.wrong}</span></Col>
        </Row>
    </>
}