-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e527e7b
commit 5bf1846
Showing
5 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
import { styled, css } from '@/renderer/globalStyles/styled'; | ||
import React, { FC } from 'react'; | ||
|
||
const StyledVideo = styled.video` | ||
height: 100%; | ||
width: 100%; | ||
object-fit: contain; | ||
overflow: hidden; | ||
background: black;` | ||
|
||
export const PedroFeed: FC = ()=>{ | ||
return <StyledVideo src="assets/PedroPedroPedro.mp4" autoPlay loop></StyledVideo> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters