All files / pages/CSV CSVDownloadsPage.jsx

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

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 27 28 29 30 31 32 33 34 35                                                                     
import React from "react";
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
 
export default function GeneralEducationSearchPage() {
  return (
    <BasicLayout>
      <div className="container mt-3">
        <h1>CSV Downloads</h1>
 
        <h2>Download by Quarter and Subject Area</h2>
 
        <p>
          Improved UX coming soon; for now, visit{" "}
          <a href="/swagger-ui/index.html#/API%20for%20course%20data%20as%20CSV%20downloads/csvForCoursesQuarterAndSubjectArea">
            this link
          </a>
          , using <code>qyyyy</code> format for quarter (e.g. <code>20254</code>{" "}
          for F25, <code>20261</code> for W26, <code>20262</code> for S26, etc)
        </p>
 
        <h2>Download all UCSB classes by Quarter</h2>
 
        <p>
          Improved UX coming soon; for now, visit{" "}
          <a href="//swagger-ui/index.html#/API%20for%20course%20data%20as%20CSV%20downloads/csvForCourses">
            this link
          </a>{" "}
          using <code>qyyyy</code> format for quarter (e.g. <code>20254</code>{" "}
          for F25, <code>20261</code> for W26, <code>20262</code> for S26, etc)
        </p>
      </div>
    </BasicLayout>
  );
}