feat: remove index.tsx and update App.tsx

This commit is contained in:
2025-06-04 09:19:35 +09:00
parent 3bf082c348
commit b865fbf3b9
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import React from "react";
import FeedList from "../components/FeedList";
import EpisodeList from "../components/EpisodeList";
export default function App() {
return (
<div style={{ padding: "20px", fontFamily: "sans-serif" }}>
<h1> </h1>
<FeedList />
<hr style={{ margin: "20px 0" }} />
<EpisodeList />
</div>
);
}

View File

@ -0,0 +1 @@
// This file can be removed since Next.js handles the entry point automatically