Files
strudel/talk/ImgTile.jsx
T
2022-06-04 15:02:04 +02:00

7 lines
205 B
React

function ImgTile({ src, width, height }) {
return (
<div style={{ background: `url(${src})`, backgroundSize: 'cover', backgroundPosition: 'center', width, height }} />
);
}
export default ImgTile;