MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / WeChatQRCodeView

Function WeChatQRCodeView

src/components/WeChatQRCodeView.tsx:4–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import Icon from "./Icon";
3
4const WeChatQRCodeView = () => {
5 const { t } = useTranslation();
6
7 return (
8 <a
9 className="w-auto px-4 py-2 rounded-full cursor-pointer bg-green-600 text-white text-sm font-medium flex flex-row justify-center items-center hover:underline hover:shadow"
10 href="/wechat-qrcode.webp"
11 target="_blank"
12 >
13 <Icon.BsWechat className="w-4 h-auto mr-1" />
14 {t("social.join-wechat-group")}
15 </a>
16 );
17};
18
19export default WeChatQRCodeView;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected