academicYear logic

This commit is contained in:
amNobodyyy
2025-01-27 23:34:51 +05:30
parent 805d866190
commit 4466b33dff
9 changed files with 138 additions and 88 deletions

View File

@@ -1,8 +1,8 @@
import React, { useState, useEffect } from "react";
import axios from "axios";
import * as XLSX from "xlsx-js-style";
import { jsPDF } from "jspdf";
import autoTable from "jspdf-autotable";
import Navbar from "./Navbar";
const CourseConsolidated = () => {
@@ -186,6 +186,8 @@ const CourseConsolidated = () => {
return (
<>
<Navbar/>
<div>
<h1 style={{ textAlign: "center" }}>
Course Tables with Download Options
@@ -392,6 +394,7 @@ const CourseConsolidated = () => {
</button>
</div>
</div>
</>
);
};