feat(ui) - audit - base views
This commit is contained in:
parent
a99f684b83
commit
f12931491a
8 changed files with 54 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
import React from 'react';
|
||||
|
||||
function AuditDetailModal(props) {
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AuditDetailModal;
|
||||
|
|
@ -0,0 +1 @@
|
|||
export { default } from './AuditDetailModal';
|
||||
14
frontend/app/components/Client/Audit/AuditList/AuditList.tsx
Normal file
14
frontend/app/components/Client/Audit/AuditList/AuditList.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
|
||||
}
|
||||
function AuditList(props: Props) {
|
||||
return (
|
||||
<div>
|
||||
List
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AuditList;
|
||||
1
frontend/app/components/Client/Audit/AuditList/index.ts
Normal file
1
frontend/app/components/Client/Audit/AuditList/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { default } from './AuditList'
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
|
||||
}
|
||||
function AuditListItem(props: Props) {
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AuditListItem;
|
||||
|
|
@ -0,0 +1 @@
|
|||
export { default } from './AuditListItem';
|
||||
11
frontend/app/components/Client/Audit/AuditView/AuditView.tsx
Normal file
11
frontend/app/components/Client/Audit/AuditView/AuditView.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import React from 'react';
|
||||
|
||||
function AuditView(props) {
|
||||
return (
|
||||
<div>
|
||||
View
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AuditView;
|
||||
1
frontend/app/components/Client/Audit/AuditView/index.ts
Normal file
1
frontend/app/components/Client/Audit/AuditView/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { default } from './AuditView'
|
||||
Loading…
Add table
Reference in a new issue