Merge pull request '新增vip功能' (#7) from feat-20240118 into main

Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_web/pulls/7
This commit is contained in:
yezian 2024-01-22 19:13:41 +08:00
commit f6d0b6a252
1 changed files with 9 additions and 0 deletions

9
app/vip/page.jsx Normal file
View File

@ -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 <section className="flex flex-col container">Vip</section>;
}