Fix linting errors
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import * as React from 'react';
|
||||
import { GlobalStyles } from 'ts/@next/constants/globalStyle';
|
||||
|
||||
import { Header } from './header'
|
||||
import { Header } from './header';
|
||||
|
||||
interface Props {
|
||||
|
||||
}
|
||||
|
||||
const SiteWrap:React.StatelessComponent<Props> = props => {
|
||||
const SiteWrap: React.StatelessComponent<Props> = props => {
|
||||
const { children } = props;
|
||||
|
||||
return (
|
||||
@@ -16,12 +16,11 @@ const SiteWrap:React.StatelessComponent<Props> = props => {
|
||||
|
||||
<Header />
|
||||
|
||||
{ children }
|
||||
{children}
|
||||
|
||||
<footer>OMG FOOTER</footer>
|
||||
</>
|
||||
)
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
export { SiteWrap }
|
||||
export { SiteWrap };
|
||||
|
||||
Reference in New Issue
Block a user