Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-soft committed Aug 27, 2019
1 parent 4220236 commit a5168a0
Show file tree
Hide file tree
Showing 5 changed files with 246 additions and 294 deletions.
2 changes: 1 addition & 1 deletion example/package.json
Expand Up @@ -9,7 +9,7 @@
"color": "^3.1.2",
"lodash.clamp": "^4.0.3",
"lodash.merge": "^4.6.2",
"next": "^9.0.3",
"next": "^9.0.5",
"prop-types": "^15.6.2",
"react": "link:../node_modules/react",
"react-dom": "link:../node_modules/react-dom",
Expand Down
6 changes: 3 additions & 3 deletions example/pages/_app.js
@@ -1,4 +1,4 @@
import App, { Container } from 'next/app';
import App from 'next/app';
import React from 'react';
import { createGlobalStyle, ThemeProvider } from 'styled-components';
import styledNormalize from 'styled-normalize';
Expand All @@ -7,7 +7,7 @@ export default class MyApp extends App {
render() {
const { Component, pageProps } = this.props;
return (
<Container>
<>
{/* Adds some basic body styles */}
<DefaultStyles />

Expand All @@ -23,7 +23,7 @@ export default class MyApp extends App {
>
<Component {...pageProps} />
</ThemeProvider>
</Container>
</>
);
}
}
Expand Down

0 comments on commit a5168a0

Please sign in to comment.