Skip to content

Commit 8711618

Browse files
committed
🚧 Create PlayerVideo component
1 parent ebab0a5 commit 8711618

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

src/App.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import React from "react";
2+
import PlayerVideo from "./components/PlayerVideo";
23

34
function App() {
4-
return <h1>Vai Brasil!!!!</h1>;
5+
return <PlayerVideo />;
56
}
67

78
export default App;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
3+
function PlayerVideo() {
4+
return (
5+
<video src="http://sveltejs.github.io/assets/caminandes-llamigos.mp4"></video>
6+
);
7+
}
8+
9+
export default PlayerVideo;

0 commit comments

Comments
 (0)