diff options
Diffstat (limited to 'sw-ui/src/components/home/Home.tsx')
-rw-r--r-- | sw-ui/src/components/home/Home.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sw-ui/src/components/home/Home.tsx b/sw-ui/src/components/home/Home.tsx new file mode 100644 index 00000000..094db658 --- /dev/null +++ b/sw-ui/src/components/home/Home.tsx @@ -0,0 +1,12 @@ +import * as React from 'react'; +import { Flex } from 'reflexbox'; +import { ChooseNameForm } from './ChooseNameForm'; +import './Home.css' +import logo from './logo-7-wonders.png'; + +export const Home = () => ( + <Flex className='homeRoot fullscreen' column align='center' justify='center'> + <img src={logo} alt="Seven Wonders"/> + <ChooseNameForm/> + </Flex> +); |