What is the translation of " REACT COMPONENTS " in Hebrew?

[ri'ækt kəm'pəʊnənts]
[ri'ækt kəm'pəʊnənts]
קומפוננטות react
בקומפוננטות react

Examples of using React components in English and their translations into Hebrew

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
React components are a great way to do that.
קומפוננטות React הן דרך מעולה לעשות זאת.
By inspecting the code, you will notice that we have three React components.
בעת בדיקת הקוד, תבחינו שיש לנו שלוש קומפוננטות React.
React components can have state by setting this.
קומפוננטות React יכולות להשתמש ב-state על ידי הגדרת this.
Commonly, you might want to display React components in multiple places on the HTML page.
לעיתים קרובות, נרצה להציג קומפוננטות React בכמה מקומות בדף ה-HTML.
All React components must act like pure functions with respect to their props.
כל קומפוננטות React חייבות לפעול כמו פונקציות טהורות ביחס ל-props שלהן.
ReactTestUtils makes it easy to test React components in the testing framework of your choice.
ReactTestUtils מקל על תהליך בדיקת קומפוננטות React בכל פריימוורק בדיקה שתבחר.
React components hide their implementation details, including their rendered output.
קומפוננטות React מחביאות את פרטי הישום שלהן, כולל את הפלט המרונדר שלהן.
Custom Hooks offer theflexibility of sharing logic that wasn't possible in React components before.
Hooks מותאמים אישית מציעיםאת הגמישות של שיתוף לוגיקה שלא היה אפשרי בקומפוננטות React בעבר.
Conceptually, React components have always been closer to functions.
מבחינת תפיסתית, קומפוננטות React תמיד היו יותר קרובות לפונקציות.
React components implement a render() method that takes input data and returns what to display.
קומפוננטות ריאקטיות מממשות מתודת render() הלוקחת קלט מידע ומחזירה מה להציג.
This package provides a Reactrenderer that can be used to render React components to pure JavaScript objects, without depending on the DOM or a native mobile environment.
חבילה זו מספקת מרנדרReact שניתן להשתמש בו כדי לעבד קומפוננטות React לאובייקטי JavaScript טהורים, ללא תלות ב-DOM או בסביבת מובייל טבעית.
React components are small, reusable pieces of code that return a React element to be rendered to the page.
קומפוננטות React הם חלקי קוד קטנים, הניתנים לשימוש חוזר המחזירים אלמנט React שירונדר לדף.
However, React components are declarative and specify what should be rendered.
לעומת זאת, קומפוננטות React הן דקלרטיביות ורק מציינות מה צריך לרנדר באפליקציה.
It lets you use React components, but outputs pre-rendered HTML and CSS to guarantee the fastest load time.
הוא נותן לך להשתמש בקומפוננטות React, אבל פולט HTML ו-CSS שרונדרו מראש על מנת להבטיח את זמני טעינה המהירים ביותר.
State allows React components to change their output over time in response to user actions, network responses, and anything else, without violating this rule.
ה-state מאפשר לקומפוננטות React לשנות את הפלט שלהן לאורך הזמן בתגובה לפעולות משתמש, תשובות מהרשת, וכל דבר אחר, מבלי להפר כלל זה.
Since React components often take both custom and DOM-related props,React uses the camelCase convention just like the DOM APIs.
מכיוון שקומפוננטות React בדרך כלל מקבלות גם props מותאמות אישית וגם כאלה שקשורות ל-DOM, React משתמשת במוסכמת ה-camelCase בדיוק כמו ממשקי המשתמש של ה-DOM.
A React component that subscribes to context changes.
קומפוננטת React שמקשיבה לשינויים בקונטקסט.
Each React component is encapsulated and can operate independently;
כל קומפוננטת React היא מוכמסת(encapsulated) והיא יכולה לפעול באופן עצמאי;
In a controlled component,form data is handled by a React component.
בקומפוננטה מבוקרת, נתוני הטופס מנוהלים על ידי קומפוננטת React.
In this section, we will show how to add a React component to an existing HTML page.
בחלק זה, נראה איך להוסיף קומפוננטת React לדף HTML קיים.
Sometimes it's useful to define a static method on a React component.
לפעמים יש צורך בהגדרת מתודה סטאטית בקומפוננטת React.
The simplest version of React component is a plain JavaScript function that returns a React element.
הגרסה הפשוטה ביותר של קומפוננטות React היא פונקציית JavaScript פשוטה שמחזירה אלמנט React:.
All React component classes that have a constructor should start it with a super(props) call.
בכל מחלקה של קומפוננטת React שיש לה constructor עליו להתחיל עם קריאה ל-super(props).
Unlike a React component, a custom Hook doesn't need to have a specific signature.
בשונה מקומפוננטת React, Hook מותאם אישית לא צריך שתהיה לו חתימה ספציפית.
This will allow us to find it from the JavaScript code later anddisplay a React component inside of it.
זה יאפשר לנו למצוא אותומקוד ה-JavaScript מאוחר יותר ולהציג קומפוננטת React בתוכו.
These two lines of code find the we added to our HTML in the first step,and then display our“Like” button React component inside of it.
שתי שורות אלו מוצאות את תגית ה- שהוספנו לדף ה-HTML בשלב הראשון,ואז מציגות את קומפוננטת כפתור ה-”לייק” בתוכו.
This must return a Promise whichresolves to a module with a default export containing a React component.
הוא חייב להחזיר Promiseשמתפרשת למודול עם default export שמכיל קומפוננטת React.
Pass a mocked component module to this method to augment it with usefulmethods that allow it to be used as a dummy React component.
העבר מודול קומפוננטה“מזוייפת” למתודה זו על מנת להרחיב אותה עם מתודותשימושיות שנותנות את האפשרות להשתמש בה כקומפוננטת React מדומה.
The React Devtools extension for Chrome andFirefox lets you inspect a React component tree with your browser's developer tools.
התוסף React Devtools עבור Chromeו-Firefox מאפשר לכם לבדוק עץ קומפוננטות של React עם כלי הפיתוח של הדפדפן שלכם.
It can sometimes be tedious to use controlled components, because you need to write an event handler for every way your data can change andpipe all of the input state through a React component.
זה יכול לפעמים להיות מייגע להשתמש בקומפוננטות מבוקרות, כי אתם צריכים לכתוב מטפל אירוע עבור כל דרך בה הנתונים שלכם יכולים להשתנות ולשרשראת כל מצבי הקלט באמצעות קומפוננטת React.
Results: 30, Time: 0.0372

Word-for-word translation

Top dictionary queries

English - Hebrew