App.jsx 701 B

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