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 26 | 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | import { Row, Button, Col } from "react-bootstrap";
import { Link } from "react-router";
import { StudentCoursesTable } from "main/components/Courses/StudentCoursesTable";
export default function OnboardingSelectCoursesComponent() {
return (
<>
<Row>
<h1>Joining Courses</h1>
<p>
Next, you're listed on the roster of the courses below. Follow the
prompts to join:
</p>
<StudentCoursesTable testid={"OnboardingCoursesTable"} />
</Row>
<Row className="pt-5 justify-content-center pb-3">
<Col xs="auto" className="text-center">
<Button as={Link} to="/onboarding/success">
Continue
</Button>
</Col>
</Row>
</>
);
}
|