我有一个语法错误,以前不是问题?这在安装 react-router-dom 后发生了一点

I have a syntax error that was not an issue before? This happened a bit after installing react-router-dom

提问人:Birdy 提问时间:7/26/2023 更新时间:7/26/2023 访问量:20

问:

我在下面发布了有问题的代码:

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)',
        },

这是代码中错误的图像:

enter image description here

这在以前是不确定的。请帮我解决这个问题。

javascript html reactjs 语法错误 react-icons

评论

0赞 Nadir Belhaj 7/26/2023
我认为获取的某些链接没有定义属性“style”
1赞 Birdy 7/30/2023
@NadirBelhaj - 这并没有解决我的问题。最后,我重新完成了我的项目,现在它工作正常。我不确定在这种情况下发生了什么。

答: 暂无答案