Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
245 Bytes
import { connect } from 'react-redux';
import UsersSearch from './users_search';
const mapStateToProps = state => ({
});
const mapDispatchToProps = dispatch => ({
});
export default connect(mapStateToProps, mapDispatchToProps)(UsersSearch);