Lập trình React.JS
Học trực tuyến
Học trực tuyến
Tổng quan
Chương trình học
Đánh giá

These days there are lot of programing languages to learn and front-end developing has been in the next level these days.

Today under Programming course we are providing React.js course.

React (also known as React.js or ReactJS) is a free and open-source front-end JavaScript library[3] for building user interfaces or UI components. It is maintained by Facebook and a community of individual developers and companies.[4][5][6] React can be used as a base in the development of single-page or mobile applications. However, React is only concerned with state management and rendering that state to the DOM, so creating React applications usually requires the use of additional libraries for routing, as well as certain client-side functionality.[7]

The following is a rudimentary example of React usage in HTML with JSX and JavaScript.

<div id="myReactApp"></div>

<script type="text/babel">

function Greeter(props) {

return <h1>{props.greeting}</h1>;

}

let App = <Greeter greeting="Hello World!" />;

ReactDOM.render(App, document.getElementById('myReactApp'));

</script>

The Greeter function is a React component that accepts a property greeting. The variable App is an instance of the Greeter component where the greeting property is set to ‘Hello World!’. The ReactDOM.render method then renders our Greeter component inside the DOM element with id myReactApp.

When displayed in a web browser the result will be

<div id="myReactApp">

<h1>Hello World!</h1>

</div>

Chương trình học

  • 5 chương
  • 9 bài học
  • 1 trắc nghiệm
  • 0 bài tập
  • 9h 20m thời lượng
Mở rộng
Introduction to React
3 bài học0 trắc nghiệm0 bài tập
  1. Welcome to Front-End Web Development with React
  2. Node.js and NPM
  3. Introduction to React
React Router and Single Page Applications
2 bài học0 trắc nghiệm0 bài tập
  1. Lesson on React Components
  2. Lesson on React Router
React Forms, Flow Architecture and Introduction to Redux
3 bài học0 trắc nghiệm0 bài tập
  1. Lesson on React Forms
  2. Flow Architecture
  3. Introduction to Redux
More Redux and Client-Server Communication
1 bài học0 trắc nghiệm0 bài tập
  1. Client Server Communication
Quiz
0 bài học1 trắc nghiệm0 bài tập
  1. Programming quiz
0 / 5

0 đánh giá của người dùng.

×

Bài học video miễn phí:

Xóa nhận xét khóa học

Bạn chắc chắn? Bạn sẽ không thể khôi phục lại.

Khóa học liên quan

Học trực tuyến

Lập trình Scratch

0 (0)
  • Trẻ em 6-11 tuổi
  • 20 buổi học trực tuyến
  • 05 dự án thực tế
9h 30m
0
0
22
Scroll to top