maxpou/gatsby-starter-morning-dew

View on GitHub
src/components/App.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'

import { ThemeProvider } from '../ThemeContext'

function App({ children }) {
  return (
    <ThemeProvider>
      {/* <GlobalStyles /> */}
      {children}
    </ThemeProvider>
  )
}

export default App