import React from 'react'; import { Link } from 'react-router-dom'; function ApplicationsCard03(props) { const handleIcon = (id) => { switch (id) { case 0: return ( ); case 1: return ( ); case 2: return ( ); case 3: return ( ); default: return; } }; return (
{handleIcon(props.id)}

{props.title}

Explore ->
); } export default ApplicationsCard03;