13 lines
188 B
TypeScript
13 lines
188 B
TypeScript
|
|
import VideoFeed from "./components/videoFeed/VideoFeed";
|
||
|
|
|
||
|
|
const Dashboard = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
Dashboard
|
||
|
|
<VideoFeed />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Dashboard;
|