• TZW's avatar
    151343 · 57dccb36
    TZW authored
    57dccb36
Welcome.jsx 311 Bytes
import React from 'react';
export default () => {
  const style = {
    width: '100%',
    height: '100%',
    backgroundImage: `url(${require('../../public/home.gif')})`,
    backgroundPosition: '0 0',
    backgroundSize: 'cover',
    backgroundRepeat: 'no-repeat',
  };
  return <div style={style}></div>;
};