Pengenalan React

Admin 17 Mar 2026 518 Views HTML Dasar

Apa itu React?

React adalah library JavaScript yang dikembangkan oleh Facebook untuk membangun user interface (UI) yang interaktif.

Kelebihan React

  • Virtual DOM untuk performa lebih baik
  • Component-based architecture
  • One-way data binding
  • Ecosystem yang luas

Contoh Kode

Example
<!-- Menggunakan Create React App -->
npx create-react-app my-app
cd my-app
npm start

<!-- Komponen React -->
import React from 'react';

function Hello() {
  return <h1>Halo, React!</h1>;
}

export default Hello;