// Basic JS file with review issues import React, { useState } from 'react'; // 1. Component không dùng prop types function Demo(props) { // 2. State không khởi tạo đúng kiểu const [count, setCount] = useState('0'); // Nên là số // 3. Hàm không dùng function unusedFunc() { return 'unused'; } // 4. Truy cập props không tồn tại const name = props.username; // 5. Render mảng không có key const arr = [1,2,3]; const list = arr.map(item =>
{name}