mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:39:08 +00:00
25 lines
372 B
JavaScript
25 lines
372 B
JavaScript
import React, { Component } from 'react'
|
|
import { createGlobalStyle } from 'styled-components'
|
|
|
|
const GlobalStyle = createGlobalStyle`
|
|
#root, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
`
|
|
|
|
import Routes from './Routes'
|
|
|
|
class App extends Component {
|
|
render() {
|
|
return (
|
|
<>
|
|
<GlobalStyle />
|
|
<Routes />
|
|
</>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default App
|