19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import React from "react"
|
|
|
|
export default function PermissionDenied() {
|
|
return (
|
|
<div>
|
|
<h1>Enable Notifications</h1>
|
|
<div>
|
|
<span className="bold">Tack Up Now</span> requires notifications
|
|
permissions to work
|
|
</div>
|
|
<br />
|
|
<div>
|
|
You have denied permission to send notifications, please grant
|
|
notifications permissions to use Tack Up Now
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|