Welcome.jsx 311 Bytes
Newer Older
TZW's avatar
TZW committed
1
import React from 'react';
TZW's avatar
TZW committed
2 3 4 5
export default () => {
  const style = {
    width: '100%',
    height: '100%',
TZW's avatar
TZW committed
6
    backgroundImage: `url(${require('../../public/home.gif')})`,
TZW's avatar
TZW committed
7
    backgroundPosition: '0 0',
TZW's avatar
TZW committed
8
    backgroundSize: 'cover',
TZW's avatar
TZW committed
9 10 11 12
    backgroundRepeat: 'no-repeat',
  };
  return <div style={style}></div>;
};