25 lines
No EOL
501 B
JavaScript
25 lines
No EOL
501 B
JavaScript
import React from 'react';
|
|
import Grid from 'react-css-grid';
|
|
import VideoItem from "./VideoItem";
|
|
import SectionHeading from "./SectionHeading";
|
|
|
|
class RandomDate extends React.Component {
|
|
render() {
|
|
|
|
return (
|
|
<section>
|
|
<SectionHeading title="Random Date"/>
|
|
<Grid
|
|
width={220}
|
|
gap={12}>
|
|
<VideoItem/>
|
|
<VideoItem/>
|
|
<VideoItem/>
|
|
<VideoItem/>
|
|
</Grid>
|
|
</section>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default (RandomDate); |