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