# reflux-alerts **Repository Path**: mirrors_getsentry/reflux-alerts ## Basic Information - **Project Name**: reflux-alerts - **Description**: Reusable flash message / alerting in React and Reflux - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This project is a work in progress. reflux-alerts ============= An attempt to implement reusable flash message / alerting using the React + Reflux stack. The built-in Message display follows Bootstrap3's markup conventions. Usage ----- .. code-block:: jsx var Alerts = require("reflux-alerts"); var MyComponent = React.createClass({ addAlert: function(){ Alerts.add(hello world); }, render: function(){ return ; } }); Because an alert is any valid component, you can also pas your own custom HTML or components: .. code-block:: Jsx Alerts.add(
An arguably less useful version of an alert
);