File size: 327 Bytes
d092f57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React, { FC } from "react"
import Alert, { AlertProps } from "./Alert"
const NoScriptAlert: FC<AlertProps> = ({ className = "", canClose = true }) => {
return (
<Alert className={className} canClose={canClose}>
Well... it seems like you disabled javascript.
</Alert>
)
}
export default NoScriptAlert
|