Fix linting errors

This commit is contained in:
Fred Carlsen
2018-11-28 16:35:59 +01:00
parent a1fe30e210
commit d05d5ac10d

View File

@@ -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 };