import { type NextPage } from "next"; import Head from "next/head"; import { api } from "~/utils/api"; const VideoList: NextPage = () => { const hello = api.example.hello.useQuery({ text: "from tRPC" }); return ( <> Create T3 App

single video page

); }; export default VideoList;