提交nextjs新项目

This commit is contained in:
2025-04-24 17:46:11 +08:00
parent b0728746cd
commit 72f6893660
12 changed files with 6085 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
"use client";
import { useState } from "react";
export default function Home() {
const [nums, setNum] = useState({ num: 0 });
return (
<div>
Home
</div>
);
}