import React from "react"; import { useLocale } from "../../../hooks"; import "./index.scss"; export default function LimitBanner({ type = "collections" }) { const collections = [ "You have 0 free saves remaining", "and unlock unlimited collections", ]; const locale = useLocale(); const text = type === "collections" ? collections : ["This should not happen!", "🤷‍♂️"]; return (

{text[0]}
Become an MDN Plus subscriber {text[1]}

); }