import { Fragment } from "react"; import { useSelector } from "react-redux"; import { languageColor, skeleton } from "../helpers/utils"; import { AiFillStar, AiOutlineFork } from 'react-icons/ai'; import { VscSourceControl } from 'react-icons/vsc'; import config from "../config"; import { CgGitFork } from "react-icons/cg"; const LIMIT = 8; const Project = () => { const loading = useSelector(state => state.loading); const repo = useSelector(state => state.repo); const renderSkeleton = () => { let array = []; for (let index = 0; index < LIMIT; index++) { array.push((
{item.description}