I've posted the code in question below:
import React from 'react';
import {FaGithub, FaLinkedin, FaCodepen} from 'react-icons/fa';
import {HiOutlineMailOpen} from 'react-icons/hi';
import {BsFillPersonLinesFill} from 'react-icons/bs';
const SocialLinks = () => {
const links = [
{
id:1,
child: (
<>
GitHub <FaGithub size={30}/>
</>
),
href: '(blank for purpose of posting here)',
style: 'rounded-tr-md'
},
{
id:2,
child: (
<>
Codepen <FaCodepen size={30}/>
</>
),
href: '(blank for purpose of posting here)',
},
This is an image of the error in the code:
This was not an issure before. Please help me resolve this.
