blob: 61eef42768f0816c7062f9bfb5d6dc92e48bf563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// @flow
import React, { type Children } from 'react';
import { Banner } from 'rebass';
import logo from './logo-7-wonders.png';
import background from './background-zeus-temple.jpg';
import ErrorToastContainer from '../components/errors/errorToastContainer';
export default ({ children }: { children: Children }) => (
<div>
<Banner align="center" backgroundImage={background}>
<img src={logo} alt="Seven Wonders" />
{children}
</Banner>
<ErrorToastContainer />
</div>
);
|