import React, { FC } from "react" import Alert, { AlertProps } from "./Alert" const NoScriptAlert: FC = ({ className = "", canClose = true }) => { return ( Well... it seems like you disabled javascript. ) } export default NoScriptAlert