2018-12-06 20:33:29 +02:00
|
|
|
import React from 'react';
|
|
|
|
import VideoItem from "../components/VideoItem";
|
|
|
|
import Grid from "react-css-grid";
|
|
|
|
import SectionHeading from "../components/SectionHeading";
|
2018-12-01 19:22:26 +05:30
|
|
|
|
|
|
|
class TopicsList extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2018-12-06 20:33:29 +02:00
|
|
|
<section>
|
|
|
|
<SectionHeading title="Random Topic"/>
|
|
|
|
<Grid
|
|
|
|
width={450}
|
|
|
|
gap={24}>
|
|
|
|
<VideoItem/>
|
|
|
|
<VideoItem/>
|
|
|
|
<VideoItem/>
|
|
|
|
<VideoItem/>
|
|
|
|
</Grid>
|
|
|
|
</section>
|
2018-12-01 19:22:26 +05:30
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TopicsList;
|