I have a basic block with a base 64 background:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
#footer {
background: #00b2d6 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQoAAAEOCAMAAABGhKntAAAAM1BMVEUAAAAHpswGpssFpMkHpssAn88GpcsGpcwHp8sHpcsHpMwHp88HpswGpswGpcwHpcsHpszyVnbHAAAAEHRSTlMAz58w7xDfv0CAYCCvcFCPOTrUqgAAKt9JREFUeAHsWgmf+...
Can React handle this with inline styles? How can I create a component with a similar background?
var footerStyle = {
backgroundImage: ... ,
backgroundSize: 'cover',
backgroundRepeat : 'repeat',
textAlign: 'center',
padding: '100px',
fontSize: '50px',
boxSizing: 'border-box'
};
const Footer = () => <div style={footerStyle}>Discover unlimited possibilities</div>;