From f12931491a6941abf2cb7bc87b16f7563de4ae1e Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 6 May 2022 12:06:55 +0200 Subject: [PATCH] feat(ui) - audit - base views --- .../Audit/AuditDetailModal/AuditDetailModal.tsx | 11 +++++++++++ .../Client/Audit/AuditDetailModal/index.ts | 1 + .../Client/Audit/AuditList/AuditList.tsx | 14 ++++++++++++++ .../app/components/Client/Audit/AuditList/index.ts | 1 + .../Client/Audit/AuditListItem/AuditListItem.tsx | 14 ++++++++++++++ .../components/Client/Audit/AuditListItem/index.ts | 1 + .../Client/Audit/AuditView/AuditView.tsx | 11 +++++++++++ .../app/components/Client/Audit/AuditView/index.ts | 1 + 8 files changed, 54 insertions(+) create mode 100644 frontend/app/components/Client/Audit/AuditDetailModal/AuditDetailModal.tsx create mode 100644 frontend/app/components/Client/Audit/AuditDetailModal/index.ts create mode 100644 frontend/app/components/Client/Audit/AuditList/AuditList.tsx create mode 100644 frontend/app/components/Client/Audit/AuditList/index.ts create mode 100644 frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx create mode 100644 frontend/app/components/Client/Audit/AuditListItem/index.ts create mode 100644 frontend/app/components/Client/Audit/AuditView/AuditView.tsx create mode 100644 frontend/app/components/Client/Audit/AuditView/index.ts diff --git a/frontend/app/components/Client/Audit/AuditDetailModal/AuditDetailModal.tsx b/frontend/app/components/Client/Audit/AuditDetailModal/AuditDetailModal.tsx new file mode 100644 index 000000000..03a5eee0d --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditDetailModal/AuditDetailModal.tsx @@ -0,0 +1,11 @@ +import React from 'react'; + +function AuditDetailModal(props) { + return ( +
+ +
+ ); +} + +export default AuditDetailModal; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditDetailModal/index.ts b/frontend/app/components/Client/Audit/AuditDetailModal/index.ts new file mode 100644 index 000000000..fcf6bb2b4 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditDetailModal/index.ts @@ -0,0 +1 @@ +export { default } from './AuditDetailModal'; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditList/AuditList.tsx b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx new file mode 100644 index 000000000..fc135f102 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditList/AuditList.tsx @@ -0,0 +1,14 @@ +import React from 'react'; + +interface Props { + +} +function AuditList(props: Props) { + return ( +
+ List +
+ ); +} + +export default AuditList; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditList/index.ts b/frontend/app/components/Client/Audit/AuditList/index.ts new file mode 100644 index 000000000..2e6bc3739 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditList/index.ts @@ -0,0 +1 @@ +export { default } from './AuditList' \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx b/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx new file mode 100644 index 000000000..b587f08e7 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditListItem/AuditListItem.tsx @@ -0,0 +1,14 @@ +import React from 'react'; + +interface Props { + +} +function AuditListItem(props: Props) { + return ( +
+ +
+ ); +} + +export default AuditListItem; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditListItem/index.ts b/frontend/app/components/Client/Audit/AuditListItem/index.ts new file mode 100644 index 000000000..821ee9639 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditListItem/index.ts @@ -0,0 +1 @@ +export { default } from './AuditListItem'; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditView/AuditView.tsx b/frontend/app/components/Client/Audit/AuditView/AuditView.tsx new file mode 100644 index 000000000..02554fe1d --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditView/AuditView.tsx @@ -0,0 +1,11 @@ +import React from 'react'; + +function AuditView(props) { + return ( +
+ View +
+ ); +} + +export default AuditView; \ No newline at end of file diff --git a/frontend/app/components/Client/Audit/AuditView/index.ts b/frontend/app/components/Client/Audit/AuditView/index.ts new file mode 100644 index 000000000..ba32b1be0 --- /dev/null +++ b/frontend/app/components/Client/Audit/AuditView/index.ts @@ -0,0 +1 @@ +export { default } from './AuditView' \ No newline at end of file