Feat: Update to VideoPage to display stream data;

This commit is contained in:
Chris-1010
2025-01-28 21:06:23 +00:00
parent e384976686
commit a4f66ba321
12 changed files with 215 additions and 155 deletions

View File

@@ -1,7 +1,16 @@
import React from "react";
const UserPage: React.FC = () => {
return <div></div>;
interface UserPageProps {
username: string;
}
const UserPage: React.FC<UserPageProps> = ({ username }) => {
return (
<div className="bg-[#808080] h-screen w-screen flex flex-col items-center justify-center">
<h1>{username}</h1>
<p>Profile page for {username}</p>
</div>
);
};
export default UserPage;