PHP Classes

File: client/src/index.tsx

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   client/src/index.tsx   Download  
File: client/src/index.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 577 bytes
 

Contents

Class file image Download
import React from 'react'; import ReactDOM from 'react-dom'; import './app/layout/index.css'; import App from './app/layout/App'; import reportWebVitals from './reportWebVitals'; import {store, StoreContext} from "./app/stores/store"; import {BrowserRouter} from "./features/components/Routes/BrowserRouter"; import {history} from "./app/helpers"; ReactDOM.render( <StoreContext.Provider value={store}> <BrowserRouter history={history}> <App /> </BrowserRouter> </StoreContext.Provider> , document.getElementById('root') ); reportWebVitals();