ylj20011123 a9f9af33ec update
2025-06-27 19:44:17 +08:00

15 lines
372 B
TypeScript

// 失物招领审核
import { ConnectState } from "@/models/connect";
import { connect, CurrentUser } from "umi";
const LostandFoundReview: React.FC<{ currentUser: CurrentUser | undefined }> = (props) => {
return (
<div>
</div>
)
}
export default connect(({ user }: ConnectState) => ({
currentUser: user.currentUser
}))(LostandFoundReview);