import React from 'react'; import style from './Outstaffing.module.css'; const OutstaffingBlock = ({ data = {}, onClick }) => { const { img, header, tags } = data; return (
img

{header}

{tags && ( )}
); }; export default OutstaffingBlock;