Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@react-md/alert
Advanced tools
Create accessible alerts that can be displayed to users in your app. This
package provides a MessageQueue
for showing messages and a useAddMessage
hook to push alerts into the queue.
npm install --save @react-md/alert
It is generally recommended to also install the following packages since they work hand-in-hand with this package:
npm install --save @react-md/theme \
@react-md/typography \
@react-md/button
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
src/index.tsx
import { render } from "react-dom";
import { MessageQueue } from "@react-md/alert";
import App from "./App";
render(
<MessageQueue id="main-alerts">
<App />
</MessageQueue>,
document.getElementById("root")
);
src/App.tsx
import type { ReactElement } from "react";
import { useAddMessage } from "@react-md/alert";
import { Button } from "@react-md/button";
function App(): ReactElement {
const addMessage = useAddMessage();
return (
<Button
id="button-1"
onClick={() => addMessage({ children: "Example Message" })}
>
Show Message
</Button>
);
}
export default App;
FAQs
Create accessible alerts through snackbars and banners.
We found that @react-md/alert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.