diff options
| author | zephex <[email protected]> | 2024-04-20 13:34:53 +0530 |
|---|---|---|
| committer | zephex <[email protected]> | 2024-04-20 13:34:53 +0530 |
| commit | d6780cf3dad729c69a102ba2940188cf1e6bcbf4 (patch) | |
| tree | d10a2aefef6664c42439f165c73722c514b032bc /src/app/kdrama/page.jsx | |
| parent | feature added: tracker for mangas (diff) | |
| download | dramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.tar.xz dramalama-d6780cf3dad729c69a102ba2940188cf1e6bcbf4.zip | |
idk whats happening
Diffstat (limited to 'src/app/kdrama/page.jsx')
| -rw-r--r-- | src/app/kdrama/page.jsx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/app/kdrama/page.jsx b/src/app/kdrama/page.jsx index 44f8eb9..ab5ec3c 100644 --- a/src/app/kdrama/page.jsx +++ b/src/app/kdrama/page.jsx @@ -1,14 +1,14 @@ -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 /> - <PopularDramas /> - <RecentDramas /> - </div> - ); -} +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 />
+ <PopularDramas />
+ <RecentDramas />
+ </div>
+ );
+}
|