websync / components /alert /NoScriptAlert.tsx
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
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