import React, { useState } from "react"
export default function Unsupported() {
const [showWhy, setShowWhy] = useState(false)
return (
{"Sorry :("}
Your device doesn't support Tack Up Now!
{showWhy ? (
iOS 16.3 and under does not support notification delivery through web
apps, so Tack Up Now can't send notifications to your device.
) : (
)}
)
}