TmBox
➡ Full API Reference (TypeDoc) ⬅
Install
Using yarn
yarn add tmbox
using npm
npm install tmbox
Usage
/** * Alert Box */const alertBox = title: "TmBoxAlert" message: "This is an Alert Box" { ; };alertBox; /** * Confirm Box */const confirmBox = title: "TmBoxConfirm" message: "This is a Confirm Box" { ; } { };confirmBox; /** * Prompt Box */const promptBox = title: "TmBoxPrompt" message: "This is a Prompt Box" inputPlaceholder: "Put something here" { ; } { ; };promptBox;