1.0.0 • Published 9 months ago

@fexz/showalert v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

@fexz/showalert

Um módulo simples de alerta em JavaScript para exibir mensagens personalizadas na web.

Instalação

npm install @fexz/showalert

#### Cria um sistema de alerta simples para exibir mensagens personalizadas na tela.

## Como Usar? 
```javascript
import { showAlert, closeAlert } from '@fexz/show-alert';

// Exibe um alerta com uma mensagem personalizada
showAlert('Sua mensagem aqui');

// Fecha o alerta
closeAlert();
*HTML*
<div id="alertBox"><span id="alertMessage"></span></div>

*JS*
import { showAlert, closeAlert } from '@fexz/showalert';

showAlert("Mensagem de alerta!");
1.0.0

9 months ago