Preview: http://dashboards.webkom.co/react/airframe
This commit is contained in:
Tomasz Owczarczyk
2019-08-15 00:54:44 +02:00
parent f975443095
commit 37092d1d6c
626 changed files with 56691 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
import React from 'react';
import {
Container,
Row,
CardColumns,
Col
} from './../../../components';
import { HeaderMain } from "../../components/HeaderMain";
import { ProjectsSmHeader } from "../../components/Projects/ProjectsSmHeader";
import { GalleryCard } from "../../components/Gallery/GalleryCard";
import { Paginations } from "../../components/Paginations";
const GalleryGrid = () => (
<Container>
<HeaderMain
title="Gallery Grid"
className="mb-5 mt-4"
/>
{ /* START Content */}
<Row>
<Col lg={ 12 }>
<ProjectsSmHeader
subTitle="Gallery Grid"
linkList="/apps/gallery-table"
linkGrid="/apps/gallery-grid"
/>
<CardColumns>
<GalleryCard />
<GalleryCard
id="2"
/>
<GalleryCard
id="3"
/>
<GalleryCard
id="4"
/>
<GalleryCard
id="5"
/>
<GalleryCard
id="6"
/>
<GalleryCard
id="7"
/>
<GalleryCard
id="8"
/>
<GalleryCard
id="9"
/>
</CardColumns>
<div className="d-flex justify-content-center">
<Paginations />
</div>
</Col>
</Row>
{ /* END Content */}
</Container>
);
export default GalleryGrid;

View File

@@ -0,0 +1,3 @@
import GalleryGrid from './GalleryGrid';
export default GalleryGrid;