summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/SplashScreen/components/HomeLayout.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/scenes/SplashScreen/components/HomeLayout.js')
-rw-r--r--frontend/src/scenes/SplashScreen/components/HomeLayout.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/scenes/SplashScreen/components/HomeLayout.js b/frontend/src/scenes/SplashScreen/components/HomeLayout.js
index 86666eb2..2a3fd856 100644
--- a/frontend/src/scenes/SplashScreen/components/HomeLayout.js
+++ b/frontend/src/scenes/SplashScreen/components/HomeLayout.js
@@ -2,11 +2,11 @@
import type { Children } from 'react';
import React from 'react';
import { Banner } from 'rebass';
-import ErrorToastContainer from '../../../components/errors/errorToastContainer';
+import { ErrorToastContainer } from '../../../components/errors/errorToastContainer';
import background from './background-zeus-temple.jpg';
import logo from './logo-7-wonders.png';
-export default ({ children }: { children: Children }) => (
+export const HomeLayout = ({ children }: { children: Children }) => (
<div>
<Banner align="center" backgroundImage={background}>
<img src={logo} alt="Seven Wonders" />
bgstack15