Skip to content

Commit

Permalink
added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Phaneendra committed Aug 27, 2021
1 parent ab2a264 commit 5f46af9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/screens/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Card from "../../components/Card";
import paths from "../../Router/paths.json";

const Home = () => {
// List of all the projects
const listOfProjects = [
{
name: "Audio to text",
Expand All @@ -26,10 +27,12 @@ const Home = () => {
href: paths.imageSketch,
},
];
// RETURN HTML OF HOME SCREEN
return (
<div className="listOfProjects">
<h1 className="section-title">List of projects</h1>
<div className="row">
{/* return list of card items */}
{listOfProjects.map((item, i) => {
return (
<div key={i} className="col-md-4 pb-3">
Expand Down

0 comments on commit 5f46af9

Please sign in to comment.