Files
DTAN/src/page/home.tsx
2023-11-27 13:19:14 +00:00

12 lines
203 B
TypeScript

import { Search } from "../element/search";
import { LatestTorrents } from "../element/trending";
export function HomePage() {
return (
<>
<Search />
<LatestTorrents />
</>
);
}