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