import React from 'react'; import { Link } from 'react-router-dom'; function ApplicationsCard02(props) { return (
{/* Image */} {props.name} {/* Card Content */}
{/* Card body */}
{/* Header */}

{props.title}

{props.content}
{/* Price */}
{props.deal}
{props.price}
{/* Card footer */}
Buy Now
); } export default ApplicationsCard02;