远程遥控完成

This commit is contained in:
mtvpls
2026-05-30 22:34:07 +08:00
parent 30554fcd77
commit 3a030cce5a
13 changed files with 1036 additions and 88 deletions
+8 -1
View File
@@ -1,9 +1,16 @@
import { ReactNode } from 'react';
import TVRemoteReceiver from '@/components/tv/TVRemoteReceiver';
export const metadata = {
title: 'TV - MoonTV Plus',
};
export default function Layout({ children }: { children: ReactNode }) {
return children;
return (
<>
{children}
<TVRemoteReceiver />
</>
);
}