32 lines
895 B
JavaScript
32 lines
895 B
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import { graphql } from 'gatsby';
|
|
|
|
import { Container, Row, Col } from 'react-bootstrap';
|
|
import Layout from '../components/layout';
|
|
import SEO from '../components/seo';
|
|
import SideBar from '../components/sidebar';
|
|
import CategoryDescription from '../components/categorydescription';
|
|
import BookFeed from '../components/feed';
|
|
|
|
const basicTemplate = (props) => {
|
|
const { pageContext } = props;
|
|
const { categoryName, data } = pageContext;
|
|
return (
|
|
<Layout>
|
|
<SEO title="Home" />
|
|
<Container fluid>
|
|
<Row>
|
|
<Col xs={2}>
|
|
<SideBar />
|
|
</Col>
|
|
<Col>
|
|
<CategoryDescription categoryName={categoryName} />
|
|
<BookFeed data={data} categoryName={categoryName} />
|
|
</Col>
|
|
</Row>
|
|
</Container>
|
|
</Layout>
|
|
);
|
|
};
|
|
export default basicTemplate;
|