Code Monkey home page Code Monkey logo

Comments (3)

josepot avatar josepot commented on May 25, 2024 2

Hi @meepeek !

Thanks for reporting this. This made me realize that we should probably have written that example using TS, like we've done with the rest of the examples and the docs. Anyhow, there is a simple way to fix that issue:

replacing line 6 with:

const [textChange$, setText$] = createSignal<string>();

should do it.

Stackblitz example.

I will leave this issue open until we've decided whether we should write the main example with TS or with JS.

Thanks!

from react-rxjs.

meepeek avatar meepeek commented on May 25, 2024

After posted, I just rethink and it's the problem with ts not accept the type. Is there any way to bypass it ? The error reported is on the library code so I should fix the compiler instead of patching the library.

change "" to null seems to fix it but according to the doc, since "" and null should be different on display so I'm not sure it will works.

Also I encounter another 2 errors after that as follow

Type 'void' is not assignable to type 'string | number | readonly string[]'.  TS2322

    14 |       <input
    15 |         type="text"
  > 16 |         value={text}   < ----- THIS IS THE 1ST ONE
       |         ^
    17 |         placeholder="Type something..."
    18 |         onChange={(e) => setText(e.target.value)}  < ------ THE 2ND ONE SAID setText EXPECTED 0 arugments but get 1
    19 |       />

from react-rxjs.

voliva avatar voliva commented on May 25, 2024

Added typescript annotation to getting started

from react-rxjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.