App.jsx 745 B

1234567891011121314151617181920212223242526
  1. import './css/App.css'
  2. import Sidebar from "./Components/Sidebar"
  3. import VideoFeed from './Components/VideoFeed'
  4. import Player from './Components/Player'
  5. import { useState, useEffect } from 'react'
  6. function App() {
  7. return (
  8. <div className="main">
  9. <Sidebar />
  10. <Player className="top-video" video={2} information={{
  11. title: "habibi habibi",
  12. description: "my name is john clapper. i clap everyone. i clap first at the cinema. no one else claps.",
  13. likes: "1.2M",
  14. dislikes: "1K",
  15. comments: "1.1K",
  16. shares: "392",
  17. author: "John Clapper",
  18. authorAvatar: "https://i.imgur.com/4Z2b7aH.png",
  19. authorId: "johnclapper",
  20. }} />
  21. </div>
  22. )
  23. }
  24. export default App