From 9725aaee6ca91cd9c8b68bb180af4a6f238a8730 Mon Sep 17 00:00:00 2001 From: yezian Date: Mon, 22 Jan 2024 19:12:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Evip=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/vip/page.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/vip/page.jsx diff --git a/app/vip/page.jsx b/app/vip/page.jsx new file mode 100644 index 0000000..a0668c7 --- /dev/null +++ b/app/vip/page.jsx @@ -0,0 +1,9 @@ +"use client"; + +import React from "react"; +import { generateSignature } from "@/utils/crypto"; +import webviewBaseRequest from "@/utils/webviewBaseRequest"; + +export default function Vip() { + return
Vip
; +}