提交nextjs新项目
This commit is contained in:
11
tone-page-web/app/page.tsx
Normal file
11
tone-page-web/app/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user