feat: 创建里程管理占位组件

This commit is contained in:
kkfluous
2026-04-01 19:19:22 +08:00
parent be6598a940
commit 40e84a1eaa

View File

@@ -0,0 +1,13 @@
import { Route } from 'lucide-react';
export default function MileageModule() {
return (
<div className="min-h-screen bg-[#F8F9FB] flex items-center justify-center p-6">
<div className="text-center">
<Route size={48} className="mx-auto text-gray-300 mb-4" />
<h2 className="text-lg font-semibold text-gray-500"></h2>
<p className="text-sm text-gray-400 mt-2">...</p>
</div>
</div>
);
}