How to convert this jQuery to function component or class component or react hooks
$(document).ready( function(){
setTimeout(function(){
if($('#DIV_ID').children().length === 0) {
grecaptcha.render('DIV_ID', {
'sitekey' : 'YOUR_SITE_KEY',
'callback' : recaptchaCallback
});
}
}, 500);
});