This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { lazy, useState } from 'react'; | |
import { ThemeProvider } from 'styled-components/macro'; | |
import lightTheme from 'theme/light'; | |
import darkTheme from 'theme/dark'; | |
export default function Router() { | |
// fallback for lightTheme | |
const [theme, setTheme] = useState(lightTheme); | |
useEffect(() => { |