Spaces:
Runtime error
Runtime error
File size: 336 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { t } from 'i18next';
import PrimaryButton from '../../../../../components/button/PrimaryButton';
const NewVulnButton = ({ onClick }: { onClick: () => void }) => {
return (
<div className="">
<PrimaryButton onClick={onClick}>{t('newVulnerability')}</PrimaryButton>
</div>
);
};
export default NewVulnButton;
|