Skip to content

Instantly share code, notes, and snippets.

View crhistianramirez's full-sized avatar

Crhistian Ramirez crhistianramirez

  • Sitecore
  • Des Moines, IA, United States
  • 00:03 (UTC -05:00)
View GitHub Profile
@statico
statico / useModals.tsx
Created December 19, 2021 18:26
Chakra UI await-able alert, confirm, and prompt modal dialogs
/*
* Usage:
* const { alert, confirm, prompt } = useModals()
* alert("Hey!") // awaitable too
* if (await confirm("Are you sure?")) ...
* const result = await prompt("Enter a URL", "http://")
*/
import React, {
createContext,