1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
This commit is contained in:
M 2018-12-04 12:48:15 +01:00 committed by Tim Neutkens
parent fcae74c49d
commit 38db893a33

View file

@ -53,7 +53,7 @@ const Animated = styled.div`
export default () => {
return (
<React.fragment>
<React.Fragment>
<Global
styles={css`
html,
@ -77,6 +77,6 @@ export default () => {
</Combined>
<Animated animation={bounce}>Let's bounce.</Animated>
</div>
</React.fragment>
</React.Fragment>
)
}