12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { Search } from "../element/search";
|
|
import { LatestTorrents } from "../element/trending";
|
|
|
|
export function HomePage() {
|
|
return (
|
|
<>
|
|
<Search />
|
|
<LatestTorrents />
|
|
</>
|
|
);
|
|
}
|