Last Updated:
12 May 2022 11:58
by ADMIN
On this page: https://www.telerik.com/kendo-react-ui/getting-started/
The yarn example says...
```sh
yarn create react-app my-app
```
... which is old syntax and should not be used because of bugs.
Solution: update that line to use yarn download-and-execute (dlx) like this:
```sh
yarn dlx create-react-app my-app
```