| // src/pages/UploadPage.jsx | |
| import React from 'react'; | |
| import UploadTorrent from '../components/upload'; | |
| const UploadPage = () => { | |
| return ( | |
| <div className="min-h-screen bg-gray-100 p-4"> | |
| <h1 className="text-2xl font-bold mb-4">上传种子</h1> | |
| <UploadTorrent /> | |
| </div> | |
| ); | |
| }; | |
| export default UploadPage; |