@gpa-gemstone/react-interactive
v1.0.135
Published
Interactive UI Components for GPA products
Downloads
617
Readme
react-table
The Gemstone Web Library organizes all Gemstone functionality related to web.
This library includes helpful npm package component for creating interactive components in react.
Usage
General Modal
<Modal Title='Title of Modal' ShowX={false} Callback={(confirmed) => setShow(false)} Show={show} Size={'lg'} ShowCancel={true} CancelText={'Cancel'} ConfirmText={'Ok'} >
<p> Content of the Modal should go here </p>
<p> Multiple Fields will work </p>
</Modal >
Confirmation Dialog Modal
<Warning Title='Please Confirm' Callback={(confirmed) => setShow(false)} Show={show} Message={'Are you sure you want to Continue?'} />