1
0
Fork 0
freesewing/sites/shared/components/wrappers/img.js
2022-06-17 12:02:09 +02:00

7 lines
204 B
JavaScript

/* Breaks image out of its parent container to fill the screen on mobile */
const ImageWrapper = ({ children }) => (
<div className="-ml-6 -mr-6 sm:m-0">{children}</div>
)
export default ImageWrapper