forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayout.js
More file actions
23 lines (22 loc) · 651 Bytes
/
Copy pathLayout.js
File metadata and controls
23 lines (22 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react';
import Helmet from 'react-helmet';
import Footer from './Footer';
import Nav from './Nav';
export default (props) => {
return (
<div className="wrapper">
<Helmet
titleTemplate="reactstrap - %s"
title="React Bootstrap 4 components"
defaultTitle="React Bootstrap 4 components"
meta={[
{ 'name': 'description', 'content': 'reactstrap - easy to use React Bootstrap 4 components compatible with React 0.14.x and 15' },
{ 'property': 'og:type', 'content': 'article' }
]}
/>
<Nav />
{props.children}
<Footer />
</div>
);
};