mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 21:08:36 +03:00
14 lines
196 B
JavaScript
14 lines
196 B
JavaScript
import '../scss/main.scss'
|
|
import React from 'react'
|
|
import Layout from './Layout'
|
|
|
|
class App extends React.Component {
|
|
render () {
|
|
return (
|
|
<Layout />
|
|
)
|
|
}
|
|
}
|
|
|
|
export default App
|