Removed header.jsx in favour of <Page>, <Header>, and <Body> components because some parts of the UI later on require us to modify the header area itself to have new elements. (e.g. the assignment review is technically supposed to have an AI review button in the top right)
Example Usage:
<Page>
<Header text="Header Text" /> {/* This also supports having elements within in if you use <Header></Header> instead. Ideal when you want to modify the header elements */}
<Body>
{/* your JSX HTML */}
</Body>
</Page>
Added text to instructor review detailing how to create a comment
Added line helpers to help identify which comment belongs to what text
Removed
header.jsx
in favour of<Page>
,<Header>
, and<Body>
components because some parts of the UI later on require us to modify the header area itself to have new elements. (e.g. the assignment review is technically supposed to have an AI review button in the top right) Example Usage:Added text to instructor review detailing how to create a comment
Added line helpers to help identify which comment belongs to what text
Added a general comments textarea