blob: a23dce7788104144d26e23c2e7dd54490c9bb565 [file] [log] [blame]
9563036699e95ae32025-06-02 21:42:11 +08001import React from 'react';
2import { useParams } from 'react-router-dom';
3import './App.css';
4
5export default function TorrentDetailPage() {
6 const { torrentId } = useParams();
7
8 return (
9 <div className="container">
10 <h1>种子详情页</h1>
ssq5067cb92025-06-05 11:44:23 +000011 <h2 style={{ fontSize: 'inherit', fontWeight: 'normal', textAlign: 'left' }}>标题: 种子{torrentId}</h2>
12 <p style={{ fontSize: 'inherit', textAlign: 'left' }}>简介: 这是种子{torrentId}的详细信息。</p>
9563036699e95ae32025-06-02 21:42:11 +080013 <div style={{ textAlign: 'center', marginTop: '20px' }}>
ssq5067cb92025-06-05 11:44:23 +000014 <button style={{ padding: '10px 20px', fontSize: '16px', cursor: 'pointer', backgroundColor: '#d3f0ff', border: 'none', borderRadius: '4px' }}>
9563036699e95ae32025-06-02 21:42:11 +080015 下载
16 </button>
17 </div>
18 </div>
19 );
20}