| import React from 'react';
|
| import { useParams } from 'react-router-dom';
|
| export default function TorrentDetailPage() {
|
| const { torrentId } = useParams();
|
| <div className="container">
|
| <h2 style={{ fontSize: 'inherit', fontWeight: 'normal', textAlign: 'left' }}>标题: 种子{torrentId}</h2>
|
| <p style={{ fontSize: 'inherit', textAlign: 'left' }}>简介: 这是种子{torrentId}的详细信息。</p>
|
| <div style={{ textAlign: 'center', marginTop: '20px' }}>
|
| <button style={{ padding: '10px 20px', fontSize: '16px', cursor: 'pointer', backgroundColor: '#d3f0ff', border: 'none', borderRadius: '4px' }}>
|