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>;
};
-
TZW authored57dccb36