React 警告:标签 <u1> 在此浏览器中无法识别

React Warning: The tag <u1> is unrecognized in this browser

我正在尝试渲染一个 React 组件,您可以在下一段代码中看到:

render() {
        if (!this.state.loading) {
          return <h1>Loading....</h1>;
        }
        return (
          <div>
              <h2>{ this.state.text }</h2>
            <u1>
              {this.state.users.map((user) => (
                <li key={user.id}>
                  {user.name}
                  <a href={`http://${user.website}`}>Website</a>
                </li>
              ))}
            </u1>
          </div>
        );
      }

但我收到警告:index.js:1 Warning: The tag <u1> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

我真的不明白为什么我会收到这个警告。有什么想法吗?

我想你的意思是 ul 用于无序列表而不是 u1