mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 21:11:53 +00:00
feat(ui): fix linters
This commit is contained in:
@@ -6,11 +6,17 @@ interface ComplianceInfoProps {
|
||||
version?: string;
|
||||
}
|
||||
|
||||
export const ComplianceInfo = ({ name, framework, version }: ComplianceInfoProps) => {
|
||||
export const ComplianceInfo = ({
|
||||
name,
|
||||
framework,
|
||||
version,
|
||||
}: ComplianceInfoProps) => {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
{name && (
|
||||
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">{name}</h1>
|
||||
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">
|
||||
{name}
|
||||
</h1>
|
||||
)}
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
|
||||
Reference in New Issue
Block a user