Feat: Update to VideoPage to display stream data;
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user