Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import styles from './styles';
const Step = ({ title, desc, image }) => (
);
Step.propTypes = {
title: PropTypes.string.isRequired,
desc: PropTypes.string.isRequired,
image: FastImage.propTypes.source.isRequired,
};
export default Step;