Readdy Write

✅ Solved TS3657: (JS) JSX expressions must have one parent element.ts (2657)

02.03.2021 (๐Ÿ‘4464)

TS3657: (JS) JSX expressions must have one parent element.ts (2657)

 

Error message in React

 

TS3657: (JS) JSX expressions must have one parent element.ts (2657)

 

Faulty code:

 

<Link to={"/โœ/" + this.state.idarticle}><Fab color="secondary" aria-label="edit" style={{ float: 'right' }}>

<EditIcon />

</Fab>

</Link>

Solution:

With a comprehensive DIV element

this.state.loading ?

 (

  //--< IsLoading >--

  <div>

     <p>loading..</p>

 

    <Link to={"/โœ/" + this.state.idarticle}>
       <
Fab color="secondary" aria-label="edit" style={{ float: 'right' }}>

          <EditIcon />

       </Fab>

    </Link>

 </div>

 //--</ IsLoading >--

)


0,00 €