import React from "react"; import Card from "react-bootstrap/Card"; import Button from "react-bootstrap/Button"; import { CgWebsite } from "react-icons/cg"; import { BsGithub } from "react-icons/bs"; function ProjectCards(props) { return ( {props.title} {props.description} {"\n"} {"\n"} {/* If the component contains Demo link and if it's not a Blog then, it will render the below component */} {!props.isBlog && props.demoLink && ( )} ); } export default ProjectCards;