mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
11 lines
No EOL
285 B
TypeScript
11 lines
No EOL
285 B
TypeScript
import SearchPage from "./search/page";
|
|
|
|
interface Props {
|
|
params: Promise<{ domain: string }>;
|
|
searchParams: Promise<{ query?: string }>;
|
|
}
|
|
|
|
export default async function Home(props: Props) {
|
|
// Default to rendering the search page.
|
|
return <SearchPage {...props} />;
|
|
} |