Bloomca / veles

UI library with main focus on performance
https://bloomca.github.io/veles/
MIT License
40 stars 0 forks source link

Convert number values to string if passed as children automatically #25

Closed Bloomca closed 1 month ago

Bloomca commented 1 month ago

In case you write something like this:

function Component() {
  const number = 5;
  return (
    <div>{number}</div>
  );
}

Number will not be rendered. This is a pretty silly thing to force to convert to strings manually.