mirror of
https://codeberg.org/uzu/strudel
synced 2026-08-17 10:07:44 -04:00
7 lines
205 B
React
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;
|