Files
Airframe-React/app/routes/Apps/VideosResults/VideosResults.js
2019-08-15 00:54:44 +02:00

46 lines
1.4 KiB
JavaScript
Executable File

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;