Client is deployed. Client auto deploys on push to master. Server is deployed. Server doesnt auto deploy on push. You have to ssh to the VPS and update the repo there.
btn
outlineBtn
btn-green
btn-red
btn-yellow
<InputField name='Email' onChange={()=>{}}/>
<Spinner/>
const [show,setShow] = useState(false)
<Dialog show={show} setShow={setShow} title='Welcome ARMA'/>
With Buttons
const [show,setShow] = useState(false)
<Dialog show={true} setShow={setShow} title="Welcome ARMA" >
<button className="outlineBtn" >No</button>
<button className="btn" >Yes</button>
</Dialog>
<Table
api="<backend data source url>"
transformer={<optional function which is called on every object of the data>}/>
headers={<headers of the table in the format {displayName:"", dataPath:"", sortable:true/false}>}
rowsPerPage={<number of rows you want per page>}
buttonsCount={<number of pagination buttons to display>}
filter={filter object for the api (optional)}
/>