diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e69de29..83bc94d 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -0,0 +1,14 @@ +import React from "react"; +import FeedList from "../components/FeedList"; +import EpisodeList from "../components/EpisodeList"; + +export default function App() { + return ( +
+

ポッドキャスト自動生成サービス 管理画面

+ +
+ +
+ ); +} diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index e69de29..628a763 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -0,0 +1 @@ +// This file can be removed since Next.js handles the entry point automatically