2025-02-18 18:36:06 +08:00
|
|
|
import Search from "@/app/_ui/Search";
|
|
|
|
import ResultBox from "./ResultBox";
|
2025-03-04 16:13:41 +08:00
|
|
|
import { Suspense } from "react";
|
2025-02-18 18:36:06 +08:00
|
|
|
|
2025-02-17 10:30:40 +08:00
|
|
|
export default function Page() {
|
|
|
|
return <div>
|
2025-03-04 16:13:41 +08:00
|
|
|
<Suspense fallback={<div>...</div>}>
|
|
|
|
<Search></Search>
|
|
|
|
<ResultBox />
|
|
|
|
</Suspense>
|
2025-02-17 10:30:40 +08:00
|
|
|
</div>
|
|
|
|
}
|