From b865fbf3b9e47e73307f23268f5cf8852dbb7a5a Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 09:19:35 +0900 Subject: [PATCH] feat: remove index.tsx and update App.tsx --- frontend/src/App.tsx | 14 ++++++++++++++ frontend/src/index.tsx | 1 + 2 files changed, 15 insertions(+) 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