<Table> 在反应中-bootstrap - SyntaxError

<Table> in react-bootstrap - SyntaxError

我正在使用 react-bootstrap 开发一个 React 项目,在 <Table> 部分之前或之后尝试添加 JSX 时遇到问题。

有人熟悉这个问题吗?

return (
    
    <h1>My Schedule</h1>
    
    <Table striped bordered hover>
      <thead>
        <tr>
          <th>Time</th>
          <th>Medicine Name</th>


SyntaxError: C:\Users\hardu\Desktop\Web Development\Medisafe\dashboard\src\pages\Schedule.js: Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...</>?(22:4)       

  20 |     <h1>My Schedule</h1>
  21 |
> 22 |     <Table striped bordered hover>
     |     ^
  23 |       <thead>
  24 |         <tr>
  25 |           <th>Time</th>

你必须将你的 jsx 包装在一个主要 div 或一个反应片段中。

return (
    <>
    <h1>My Schedule</h1>
    
    <Table striped bordered hover>
      <thead>
        <tr>
          <th>Time</th>
          <th>Medicine Name</th>
         </>