feat: implement dynamic page loading and server components

This commit is contained in:
2026-04-14 10:09:00 +08:00
parent 11e75d0e11
commit f22899e424
5 changed files with 220 additions and 15 deletions

9
src/pages/a/index.tsx Normal file
View File

@@ -0,0 +1,9 @@
'use server';
export default async function List() {
return (
<div>
<h1>List A</h1>
</div>
);
}