Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import * as React from 'react'
import App from 'next/app'
import { getTokens } from '@kiwicom/orbit-components'
import { ThemeProvider, createGlobalStyle } from 'styled-components'
const GlobalStyle = createGlobalStyle`
body {
width: 100vw;
height: 100vh;
margin: 0 auto;
background-color: ${({ theme }) => theme.orbit.paletteCloudLight};
}
`
const tokens = getTokens()
export default class MyApp extends App {
render() {
const { Component, pageProps } = this.props
return (
<>
)
}
}