chore: wrap conditions around browser apis that cause issues at build time

This commit is contained in:
Kyle Gill
2019-05-14 17:10:39 -06:00
parent d4b9465c49
commit 24a3eb96f2
10 changed files with 563 additions and 44 deletions

View File

@@ -5,6 +5,6 @@ import theme from "./src/styles/theme"
export const wrapRootElement = ({ element }) => (
<FirebaseContext.Provider value={new Firebase()}>
<ThemeProvider theme={theme.DARK}>{element}</ThemeProvider>
<ThemeProvider theme={theme.LIGHT}>{element}</ThemeProvider>
</FirebaseContext.Provider>
)