@clerk/nextjs
Version:
Clerk SDK for NextJS
25 lines • 801 B
JavaScript
import "./chunk-BUSYA2B4.js";
function throwRemovedControlComponentError(componentName, errorUrl) {
throw new Error(`Clerk: <${componentName}> is not available in @clerk/nextjs Core 3. Learn more at ${errorUrl}.`);
}
function SignedIn(_props) {
return throwRemovedControlComponentError(
"SignedIn",
"https://clerk.com/err/signedin-is-not-available-in-clerk-nextjs"
);
}
function SignedOut(_props) {
return throwRemovedControlComponentError(
"SignedOut",
"https://clerk.com/err/signedout-is-not-available-in-clerk-nextjs"
);
}
function Protect(_props) {
return throwRemovedControlComponentError("Protect", "https://clerk.com/err/protect-is-not-available-in-clerk-nextjs");
}
export {
Protect,
SignedIn,
SignedOut
};
//# sourceMappingURL=removedControlComponents.js.map