This commit is contained in:
Harikrishnan Gopal
2025-01-22 12:41:18 +05:30
parent e7fb1583d7
commit b8e30b5f3b
2 changed files with 13 additions and 2 deletions

View File

@@ -30,7 +30,6 @@ const ConsolidatedTable = () => {
<table border="1" style={{ width: "100%", textAlign: "left" }}>
<thead>
<tr>
<th>Sr No</th>
<th>Semester</th>
<th>Course Code</th>
<th>Course Name</th>
@@ -52,7 +51,6 @@ const ConsolidatedTable = () => {
<tbody>
{data.map((row, index) => (
<tr key={index}>
<td>{row.srNo}</td>
<td>{row.semester}</td>
<td>{row.courseCode}</td>
<td>{row.courseName}</td>