X7ROOT File Manager
Current Path:
/home/magneti1/public_html/wp-content/plugins/everest-forms/src/dashboard
home
/
magneti1
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
src
/
dashboard
/
ðŸ“
..
📄
App.js
(737 B)
ðŸ“
Constants
ðŸ“
Router
ðŸ“
Theme
ðŸ“
components
ðŸ“
context
ðŸ“
images
📄
index.js
(298 B)
ðŸ“
reducers
ðŸ“
screens
ðŸ“
skeleton
ðŸ“
utils
Editing: App.js
import React from "react"; import { HashRouter } from "react-router-dom"; import { Container, ChakraProvider } from "@chakra-ui/react"; import Theme from "./Theme/Theme"; import Router from "./Router/Router"; import { Header } from "./components"; import dashboardReducer, { initialState } from "./reducers/DashboardReducer"; import { DashboardProvider } from "./context/DashboardContext"; const App = () => { return ( <DashboardProvider initialState={initialState} dashboardReducer={dashboardReducer}> <HashRouter> <ChakraProvider theme={Theme}> <Header /> <Container maxW="container.xl"> <Router /> </Container> </ChakraProvider> </HashRouter> </DashboardProvider> ); }; export default App;
Upload File
Create Folder