Content improvements in React roadmap (#6720)
parent
74099d01e8
commit
6563ca95e7
24 changed files with 42 additions and 25 deletions
@ -1,3 +1,8 @@ |
||||
# Component / Libraries |
||||
|
||||
React component libraries are collections of pre-built, reusable components that can be used to speed up the development process. They can be styled using CSS in various ways, including traditional CSS files, CSS modules, and CSS-in-JS solutions like styled-components. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@article@MUI: React Component Library](https://mui.com/) |
||||
- [@article@NextUI.org](https://nextui.org/) |
||||
|
@ -1 +1,11 @@ |
||||
# TypeScript |
||||
|
||||
TypeScript is a free and open-source high-level programming language developed by Microsoft that adds static typing with optional type annotations to JavaScript. It is designed for the development of large applications and transpiles to JavaScript. Because TypeScript is a superset of JavaScript, all JavaScript programs are syntactically valid TypeScript, but they can fail to type-check for safety reasons. |
||||
|
||||
TypeScript supports definition files that can contain type information of existing JavaScript libraries, much like C++ header files can describe the structure of existing object files. This enables other programs to use the values defined in the files as if they were statically typed TypeScript entities. There are third-party header files for popular libraries such as jQuery, MongoDB, and D3.js. TypeScript headers for the Node.js library modules are also available, allowing development of Node.js programs within TypeScript. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@TypeScript Website](https://typescriptlang.org/) |
||||
- [@official@TypeScript Docs](https://typescriptlang.org/docs) |
||||
- [@video@Learn Typescript Basics in 12 Minutes](https://www.youtube.com/watch?v=ahCwqrYpIuM&pp=ygULdHlwZXNjcnJpcHQ%3D) |
||||
|
@ -1,8 +1,9 @@ |
||||
# useRef |
||||
|
||||
useRef is a React hook that provides a way to create a mutable reference that persists across component re-renders. It stores a value that doesn't cause re-renders when it changes. |
||||
`useRef` is a React hook that provides a way to create a mutable reference that persists across component re-renders. It stores a value that doesn't cause re-renders when it changes. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@useRef](https://react.dev/reference/react/useRef) |
||||
- [@article@W3Schools](https://www.w3schools.com/react/react_useref.asp) |
||||
- [@video@WebDevSimplified](https://www.youtube.com/watch?v=t2ypzz6gJm0) |
||||
|
Loading…
Reference in new issue