Skip to content

Commit

Permalink
addded live streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
amurto committed Aug 3, 2020
1 parent dce6c5e commit 1baa995
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions frontend/src/components/utils/LiveStream.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from "react";
import { Container, Grid } from "@material-ui/core";
import LiveCam from "./LiveCam";


const LiveStream: React.FC = () => {
return (
<Container style={{ paddingTop: "20px" }} maxWidth="xl">
<Grid container>
<LiveCam />
<LiveCam />
<LiveCam />
<LiveCam />
</Grid>
</Container>
);
};

export default LiveStream;

0 comments on commit 1baa995

Please sign in to comment.