All files / components/Onboarding OnboardingSelectCoursesComponent.jsx

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

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          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&#39;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>
    </>
  );
}