feat(ui) - audit - base views

This commit is contained in:
Shekar Siri 2022-05-06 12:06:55 +02:00
parent a99f684b83
commit f12931491a
8 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import React from 'react';
function AuditDetailModal(props) {
return (
<div>
</div>
);
}
export default AuditDetailModal;

View file

@ -0,0 +1 @@
export { default } from './AuditDetailModal';

View file

@ -0,0 +1,14 @@
import React from 'react';
interface Props {
}
function AuditList(props: Props) {
return (
<div>
List
</div>
);
}
export default AuditList;

View file

@ -0,0 +1 @@
export { default } from './AuditList'

View file

@ -0,0 +1,14 @@
import React from 'react';
interface Props {
}
function AuditListItem(props: Props) {
return (
<div>
</div>
);
}
export default AuditListItem;

View file

@ -0,0 +1 @@
export { default } from './AuditListItem';

View file

@ -0,0 +1,11 @@
import React from 'react';
function AuditView(props) {
return (
<div>
View
</div>
);
}
export default AuditView;

View file

@ -0,0 +1 @@
export { default } from './AuditView'