How to use Select components in ant design in ant design mobile

in using ant design mobile, you need to use the kind of Select component in antd, but it is not in ant design mobile. What should I do


just introduce antd directly.
npm i antd

to prevent all antd from being loaded.
can be used as follows:

import Select from 'antd/lib/select';
import 'antd/lib/select/style/index.css';

<Select>
    <Select.Option>xxxx</Select.Option>
</Select>
Menu