Skip to content

Instantly share code, notes, and snippets.

@youssof707
Created September 14, 2020 14:42
Show Gist options
  • Select an option

  • Save youssof707/8d0898a7cc5467a8d4855eb7aaf33cd2 to your computer and use it in GitHub Desktop.

Select an option

Save youssof707/8d0898a7cc5467a8d4855eb7aaf33cd2 to your computer and use it in GitHub Desktop.
TouchPoint UI Popups Example
import {PopupCard, FreeButton, useSystem} from 'touchpoint-ui'
function PopButton(){
const {Popup} = useSystem()
function clickHandler(){
Popup.open(<PopupCard title ='TouchPoint UI'>
Hello there!
</PopupCard>)
}
return(<FreeButton onClick={clickHandler}>Open Popup</FreeButton>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment