captscii
Version:
A simple and powerful Captcha solution for your website
17 lines (16 loc) • 524 B
JavaScript
"use client";
import React from "react";
/**
* @deprecated Providers are deprecated and should not be used.
* For practicality, this provider simply renders its children.
*/
export function CaptsciiProvider({ children }) {
return React.createElement(React.Fragment, null, children);
}
/**
* @deprecated Providers are deprecated and should not be used.
* This hook now throws an error when invoked.
*/
export function useCaptscii() {
throw new Error("CaptsciiProvider is deprecated and should not be used.");
}