Files
gander/web_server/frontend/src/pages/VideoPage.tsx
Chris-1010 1ede987914 Fix: Imports on backend
Fix: Connected Backend to Frontend over localhost
2025-01-21 23:54:11 +00:00

11 lines
143 B
TypeScript

import React from 'react';
const VideoPage: React.FC = () => {
return (
<div>
<h1>Hello!</h1>
</div>
);
};
export default VideoPage;