79730630

Date: 2025-08-09 12:52:38
Score: 1
Natty:
Report link
import React from 'react';

const videos = [
  { id: 'dQw4w9WgXcQ', title: 'Rick Astley - Never Gonna Give You Up' },
  { id: '3JZ_D3ELwOQ', title: 'Maroon 5 - Sugar' },
];

export default function VideoLinks() {
  return (
    <div>
      <h2>คลิป YouTube</h2>
      <ul>
        {videos.map(video => (
          <li key={video.id}>
            <a
              href={`https://www.youtube.com/watch?v=${video.id}`}
              target="_blank"
              rel="noopener noreferrer"
              style={{ color: 'blue', textDecoration: 'underline' }}
            >
              {video.title}
            </a>
          </li>
        ))}
      </ul>
    </div>
  );
}
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: บัญชี Google