From 7e8fb126c49aabb4b0bac1e5352bde2ecffb2ed2 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:50:27 -0400 Subject: [PATCH] Create JS disabled alert component --- components/NoJSAlert.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 components/NoJSAlert.tsx diff --git a/components/NoJSAlert.tsx b/components/NoJSAlert.tsx new file mode 100644 index 0000000..3af905c --- /dev/null +++ b/components/NoJSAlert.tsx @@ -0,0 +1,18 @@ +import { + Alert, + AlertDescription, + AlertIcon, + AlertTitle, +} from "@chakra-ui/react"; + +export default function () { + return ( + + + JavaScript Disabled! + + Some features of this page may not work. + + + ); +}