14 lines
No EOL
318 B
TypeScript
14 lines
No EOL
318 B
TypeScript
import React from 'react';
|
|
|
|
function AuditDetailModal(props) {
|
|
return (
|
|
<div style={{ width: '400px' }} className="bg-white h-screen">
|
|
<h1 className="text-2xl p-4">Audit Details</h1>
|
|
<div className="p-4">
|
|
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AuditDetailModal; |