7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import HomeContent from "./components/HomeContent";
|
|
|
|
/** 首页:志愿者由客户端加载,避免 SSR 阻塞首屏 */
|
|
export default function Home() {
|
|
return <HomeContent initialVolunteer={null} />;
|
|
}
|