I am making a reusable card component that takes in an image url that is required, here is the code:
import React from 'react'
export default function Card({ children, className, source }) {
return (
<div
className={className}
style={{ background: `url(${source})`, backgroundRepeat: 'no-repeat' }}
>
{children}
</div>
)
}
when rendered in the browser, path is output in the inspector as this huge assortment of path data:
is this a normal output?