Hi,
I want to show some message with close button.But its not close.Can anyone help
const [modalVisible, setModalVisible] = useState(true);
const togglemodel = () => {
setModalVisible(false);
};
{modalVisible==true?
hi
X
:null}
Srinivasan RamamoorthiPosted Sep 30, 2021, 3:27 AM