File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ import React, { FunctionComponent } from 'react';
33type Props = { }
44const Footer : FunctionComponent < Props > = ( { } ) => {
55 return (
6- < div > hello</ div >
6+ < footer >
7+ Created with ♥ by Techhive.IO 2019.
8+ </ footer >
79 ) ;
810} ;
911
Original file line number Diff line number Diff line change 11import React , { FunctionComponent , Fragment , ReactNode } from 'react' ;
2+ import { Tag } from '../../../interfaces/tag' ;
23import Meta from '../meta' ;
34import Header from '../header' ;
4- import { Tag } from '../../../interfaces/tag ' ;
5+ import Footer from '../footer ' ;
56
67type Props = {
78 meta : Tag ;
@@ -26,6 +27,7 @@ const Layout: FunctionComponent<Props> = ({meta, children}) => {
2627 body { margin: 0; padding: 0}
2728 .layout { padding: 2rem 2.5rem; }
2829 ` } </ style >
30+
2931 </ Fragment >
3032 ) ;
3133} ;
You can’t perform that action at this time.
0 commit comments