PATH:
home
/
lab2454c
/
carbonbullionexchange.com
/
wp-content
/
plugins
/
elementor
/
app
/
assets
/
js
/** * Elementor App */ import { useContext } from 'react'; import router from '@elementor/router'; import { Router, LocationProvider, createHistory } from '@reach/router'; import { createHashSource } from 'reach-router-hash-history'; import NotFound from 'elementor-app/pages/not-found'; import Index from 'elementor-app/pages/index'; import ErrorBoundary from 'elementor-app/organisms/error-boundary'; import './app.scss'; import { AppContext } from 'elementor-app/app-context'; import { ThemeProvider } from 'styled-components'; const { Suspense } = React; export default function App() { const appContext = useContext( AppContext ), { isDarkMode } = appContext.state, theme = { config: { variants: { light: ! isDarkMode, dark: isDarkMode, }, }, }; // Use hash route because it's actually rendered on a WP Admin page. // Make it public for external uses. router.appHistory = createHistory( createHashSource() ); return ( <ErrorBoundary> <LocationProvider history={ router.appHistory }> <ThemeProvider theme={ theme }> <Suspense fallback={ null }> <Router> { router.getRoutes() } <Index path="/" /> <NotFound default /> </Router> </Suspense> </ThemeProvider> </LocationProvider> </ErrorBoundary> ); }
[+]
ui
[+]
loader
[-] _app-api.scss
[edit]
[+]
event-track
[+]
hooks
[+]
..
[-] package.js
[edit]
[-] app.js
[edit]
[+]
utils
[-] app-packages.js
[edit]
[-] app-loader.js
[edit]
[+]
organisms
[-] app-context.js
[edit]
[-] app.scss
[edit]
[+]
layout
[-] index.js
[edit]
[+]
pages
[-] router.js
[edit]
[+]
molecules
[+]
url-actions