Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 25x 1x 25x | import React from "react";
import { Button, Col, Row } from "react-bootstrap";
export default function DownloadsTabComponent({ courseId, testIdPrefix }) {
const downloadCsv = () => {
window.open(`/api/csv/rosterstudents?courseId=${courseId}`, "_blank");
};
return (
<div data-testid={`${testIdPrefix}-DownloadsTabComponent`}>
<Row sm={3} className="p-2">
<Col>
<Button
onClick={downloadCsv}
className="w-100"
data-testid={`${testIdPrefix}-download-student-csv-button`}
>
Download Student CSV
</Button>
</Col>
</Row>
</div>
);
}
|