feat: setup next.js project

This commit is contained in:
2025-06-04 09:18:46 +09:00
committed by Satsuki Akiba (aider)
parent cfc111b60e
commit 73dbbfa1dd
5 changed files with 145 additions and 29 deletions

View File

@ -1,14 +0,0 @@
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

@ -1,6 +0,0 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
const root = ReactDOM.createRoot(document.getElementById("root")!);
root.render(<App />);