blob: f6b417f38001ace7301e547c0bb4a73f66e5fae9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import styles from "./styles/kdrama.module.css";
import PopularDramas from "./components/popular";
import RecentDramas from "./components/recent";
import DramaSearch from "./components/search";
export default async function Kdrama() {
return (
<div className={styles.Main}>
<DramaSearch />
<br />
<PopularDramas />
<RecentDramas />
</div>
);
}
|