45
app/routes/Apps/VideosResults/VideosResults.js
Executable file
45
app/routes/Apps/VideosResults/VideosResults.js
Executable file
@@ -0,0 +1,45 @@
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
Container,
|
||||
Row,
|
||||
Col
|
||||
} from './../../../components';
|
||||
|
||||
import { HeaderMain } from "../../components/HeaderMain";
|
||||
import { SearchResultsLeftNav } from "../../components/SearchResults/SearchResultsLeftNav";
|
||||
import { SearchResultsHeader } from "../../components/SearchResults/SearchResultsHeader";
|
||||
import { VideosResultsCard } from "../../components/SearchResults/VideosResultsCard";
|
||||
import { Paginations } from "../../components/Paginations";
|
||||
|
||||
const VideosResults = () => (
|
||||
<React.Fragment>
|
||||
<Container>
|
||||
<HeaderMain
|
||||
title="Videos Results"
|
||||
className="mb-5 mt-4"
|
||||
/>
|
||||
{ /* START Content */}
|
||||
<Row>
|
||||
<Col lg={ 3 }>
|
||||
<SearchResultsLeftNav />
|
||||
</Col>
|
||||
<Col lg={ 9 }>
|
||||
<SearchResultsHeader />
|
||||
<VideosResultsCard />
|
||||
<VideosResultsCard />
|
||||
<VideosResultsCard />
|
||||
<VideosResultsCard />
|
||||
<VideosResultsCard />
|
||||
<VideosResultsCard />
|
||||
<div className="d-flex justify-content-center">
|
||||
<Paginations />
|
||||
</div>
|
||||
</Col>
|
||||
</Row>
|
||||
{ /* END Content */}
|
||||
</Container>
|
||||
</React.Fragment>
|
||||
);
|
||||
|
||||
export default VideosResults;
|
Reference in New Issue
Block a user