Skip to content

Commit

Permalink
Merge branch 'user-dashboard' of https://github.com/uwblueprint/feedi…
Browse files Browse the repository at this point in the history
…ng-canadian-kids into user-dashboard
  • Loading branch information
hannahxdu committed Jul 18, 2023
2 parents 66a05af + 884fd2d commit 1cb8f85
Showing 1 changed file with 43 additions and 41 deletions.
84 changes: 43 additions & 41 deletions frontend/src/components/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,47 +160,49 @@ function App() {

<TabPanel>
<TableContainer>
<Table variant="simple">
<Thead>
{/* should abstract the rows into a react component */}
<Tr>
<Th>Date Requested</Th>
<Th>Time Requested</Th>
<Th>Donor's Name</Th>
<Th>Number of Meals</Th>
<Th></Th>
</Tr>
</Thead>
<Tbody>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
</Tbody>
</Table>
<Table style={{ fontFamily: "Inter" }}>
<Thead style={{ fontSize: '18px' }}>
{/* should abstract the rows into a react component */}
<Tr>
<Th style={{ fontFamily: 'Inter' }}>Date Requested</Th>
<Th style={{ fontFamily: 'Inter' }}>Time Requested</Th>
<Th style={{ fontFamily: 'Inter' }}>Donor's Name</Th>
<Th style={{ fontFamily: 'Inter' }}>Number of Meals</Th>
<Th></Th>
</Tr>
</Thead>

<Tbody style={{ fontSize: '16px' }}>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
<Tr>
<Td>Oct 27, 2022</Td>
<Td>5:00-6:00 PM</Td>
<Td>Harvey's</Td>
<Td>5</Td>
<Td>
<ChevronDownIcon boxSize={6} />
</Td>
</Tr>
</Tbody>
</Table>

</TableContainer>
</TabPanel>
<TabPanel>
Expand Down

0 comments on commit 1cb8f85

Please sign in to comment.