\n);\n\n////////////////////////////////////\n/* Relevant bits above this line */\n//////////////////////////////////\n\n// I'm using \"styled-components\" to do the CSS\n// rotation animation. This is how you specify\n// a CSS keyframes animation.\nconst rotationKeyframes = keyframes`\n from {\n transform: rotateY(0deg);\n }\n\n to {\n transform: rotateY(360deg);\n }\n`\n\nconst Wrapper = styled.div`\n position: relative;\n display: inline-block;\n\n /*\n We'll only enable the animation for folks\n who have NOT ticked the “prefers-reduced-\n motion” checkbox\n */\n @media (prefers-reduced-motion: no-preference) {\n animation:\n ${rotationKeyframes}\n 4000ms\n linear\n infinite;\n }\n`\n\nexport default function App() {\n return (\n \n );\n}\n",a={"our-mvp":"import React from 'react';\nimport styled from 'styled-components';\n\nconst FoldableImage = ({\n width,\n height,\n src,\n}) => {\n const [foldAngle, setFoldAngle] =\n React.useState(0);\n\n // Both our top half and bottom half share\n // a few common styles\n const sharedStyles = {\n width,\n height: height / 2,\n backgroundSize: `${width}px ${height}px`,\n backgroundImage: `url(${src})`,\n };\n\n return (\n
\n)\n\n////////////////////////////////////\n/* Relevant bits above this line */\n//////////////////////////////////\n\n// I'm using \"styled-components\" to do the CSS\n// rotation animation. This is how you specify\n// a CSS keyframes animation.\nconst rotationKeyframes = keyframes`\n from {\n transform: rotateY(0deg);\n }\n\n to {\n transform: rotateY(360deg);\n }\n`\n\nconst Wrapper = styled.div`\n position: relative;\n display: inline-block;\n\n /*\n We'll only enable the animation for folks\n who have NOT ticked the “prefers-reduced-\n motion” checkbox\n */\n @media (prefers-reduced-motion: no-preference) {\n animation:\n ${rotationKeyframes}\n 4000ms\n linear\n infinite;\n }\n`\n\nexport default function App() {\n return (\n \n );\n}\n","backface-hidden":r,"backface-fixed":r,combined:"import React from 'react';\nimport styled from 'styled-components';\n\nconst FoldableImage = ({\n width,\n height,\n src,\n alt,\n}) => {\n const [\n foldAngle,\n setFoldAngle,\n ] = React.useState(0);\n\n // Both our top half and bottom\n // half share a few common styles\n const sharedStyles = {\n width,\n height: height / 2,\n };\n\n return (\n