fix: resolve build errors and warnings

This commit is contained in:
2025-06-04 10:38:49 +09:00
parent 98ac9056c8
commit d0b5c19a83
4 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,5 @@
"use client";
import React from "react";
import "./globals.css";
@ -17,7 +19,6 @@ export default function RootLayout({
<div className="container">
<header className="py-4 border-b">
<h1 className="text-2xl font-bold"></h1>
</h1>
</header>
<main className="py-6">{children}</main>
<footer className="py-4 border-t text-center text-gray-500">

View File

@ -1,3 +1,5 @@
"use client";
import React, { useState } from "react";
interface Episode {

View File

@ -1,3 +1,5 @@
"use client";
import React, { useEffect, useState } from "react";
interface FeedItem {