如何在 React 中制作,以便当您单击 Notification 组件中的按钮时 - 即使页面刷新也不再显示?
{!notificationHidden &&
(
<Notification
onClose={handleCalculationNotificationClose}
>
<Button onClick={handleCalculationNotificationClose}>
ОК!
</Button>
</Notification>
)
}
.
const [notificationHidden, setNotificationHidden] = useState(false);
const handleCalculationNotificationClose = () => {
setNotificationHidden(true);
};