16 lines
242 B
Go
16 lines
242 B
Go
|
package modal_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
modal "git.kirsle.net/apps/doodle/pkg/modal"
|
||
|
)
|
||
|
|
||
|
func ExampleAlert() {
|
||
|
alert := modal.Alert("Permission Denied").WithTitle("Error").Then(func() {
|
||
|
fmt.Println("Alert button answered!")
|
||
|
})
|
||
|
|
||
|
_ = alert
|
||
|
}
|