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