116 | </FormItem> 117 | <Button className="c-w-[90px]" type='primary' style={commonButtonStyle} loading={isLoading} htmlType='submit'>绑定信息</Button> > 118 | </FormItem> | ^ 119 | </Form> 120 | </div> 121 | ); 10:10:12 [vite] Internal server error: D:\IDEA\IdeaProjects\react\src\pages\Account\Bind.tsx: Expected corresponding JSX closing tag for <Form>. (118:4) 116 | </FormItem> 117 | <Button className="c-w-[90px]" type='primary' style={commonButtonStyle} loading={isLoading} htmlType='submit'>绑定信息</Button> > 118 | </FormItem> | ^ 119 | </Form> 120 | </div> 121 | ); Plugin: vite:react-babel File: D:/IDEA/IdeaProjects/react/src/pages/Account/Bind.tsx 116| </FormItem> 117| <Button className="c-w-[90px]" type='primary' style={commonButtonStyle} loading={isLoading} htmlType='submit'>绑定信息</Button> 118| </FormItem> | ^ 119| </Form> 120| </div>
时间: 2024-04-09 13:33:07 浏览: 140
babel-plugin-tailwind-rn:允许您使用className =“ w-full md
根据你提供的代码片段,看起来你在第118行缺少了对<FormItem>的关闭标签。</FormItem>应该在118行之前添加。</FormItem>标签,以匹配开放标签<FormItem>。这将解决你遇到的错误信息。你可以尝试在代码中添加以下行:
```
</FormItem>
```
这样,你的代码就会变成:
```jsx
116 | </FormItem>
117 | <Button className="c-w-[90px]" type='primary' style={commonButtonStyle} loading={isLoading} htmlType='submit'>绑定信息</Button>
118 | </FormItem>
119 | </Form>
120 | </div>
121 | );
```
请确保所有的开放标签都有相应的关闭标签,以保持正确的语法。希望这可以帮助到你!如果你还有其他问题,请随时提问。
阅读全文