Skip to content

Commit

Permalink
Body Page (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelonepomucenoti authored Jul 12, 2022
1 parent df70659 commit aecbcf5
Show file tree
Hide file tree
Showing 6 changed files with 303 additions and 11 deletions.
204 changes: 203 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@vime/core": "^5.3.1",
"@vime/react": "^5.3.1",
"date-fns": "^2.28.0",
"graphql": "^16.5.0",
"phosphor-react": "^1.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/Pages/Event.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Header } from "../components/Header";
import { Player } from "../components/Player";
import { Video } from "../components/Video";
import { SideBar } from "../components/SideBar";

export function Event() {
return (
<div className="flex flex-col min-h-screen">
<Header />
<main className="flex flex-1">
<Player />
<Video />
<SideBar />
</main>
</div>
Expand Down
5 changes: 5 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export function Footer() {
return (
<div></div>
)
}
7 changes: 0 additions & 7 deletions src/components/Player.tsx

This file was deleted.

Loading

0 comments on commit aecbcf5

Please sign in to comment.