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

15 lines
370 B
TypeScript

// 卡券领取查询
import { ConnectState } from "@/models/connect";
import { connect, CurrentUser } from "umi";
const CardVoucherSearch: React.FC<{ currentUser: CurrentUser | undefined }> = (props) => {
return (
<div>
</div>
)
}
export default connect(({ user }: ConnectState) => ({
currentUser: user.currentUser
}))(CardVoucherSearch);