Skip to content

Commit

Permalink
Merge pull request #30 from advanced-computer-lab-2023/health_records
Browse files Browse the repository at this point in the history
view health records and add new one
  • Loading branch information
3laaHisham authored Nov 13, 2023
2 parents 7d8cf6d + 32b26d4 commit 631ad7a
Show file tree
Hide file tree
Showing 12 changed files with 7,168 additions and 6,783 deletions.
1 change: 1 addition & 0 deletions client/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"react/function-component-definition": 0,
"jsx-a11y/control-has-associated-label": 0,
"import/no-unresolved": 0,
"perfectionist/sort-imports":0,
"react/jsx-no-useless-fragment": [
1,
{
Expand Down
178 changes: 166 additions & 12 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions client/src/pages/health-record.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Helmet } from 'react-helmet-async';

import { HealthRecordView } from 'src/sections/healthRecords';

// ----------------------------------------------------------------------

export default function HealthRecordPage() {
return (
<>
<Helmet>
<title> Health Records </title>
</Helmet>

<HealthRecordView />
</>
);
}
Loading

0 comments on commit 631ad7a

Please sign in to comment.