Home > other >  Unexpected token, expected "..."
Unexpected token, expected "..."

Time:05-02

I got the error: Unexpected token, expected "..."

I use react unstated.

My code:

 return (
      <Subscribe to {[ChatContainer]}>
        {chatProvider => (
          <>
            Hello World
          </>
        )
        }
      </Subscribe>
    )

I could find solutions for expected ";" but not for this.

CodePudding user response:

You forgot to put = between to prop and its value

  • Related