pages_tasks.tsx 366 B

123456789101112131415
  1. import React from 'react';
  2. import { useAuth } from './hooks.tsx';
  3. const TasksPage = () => {
  4. return (
  5. <div className="p-4">
  6. <h1 className="text-xl font-bold mb-4">任务</h1>
  7. <div className="bg-white rounded-lg shadow p-4">
  8. <p className="text-gray-500">任务功能开发中...</p>
  9. </div>
  10. </div>
  11. );
  12. };
  13. export default TasksPage;