parent
6199f01a53
commit
0ac70a1a60
6 changed files with 42 additions and 12 deletions
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 792 B After Width: | Height: | Size: 792 B |
@ -0,0 +1,18 @@ |
||||
import React, { Component, lazy, Suspense } from "react"; |
||||
import { Provider } from "react-redux"; |
||||
import store from "./redux/store"; |
||||
import Router from "./router.js"; |
||||
|
||||
const mahdi = () => { |
||||
return ( |
||||
<> |
||||
<h2>hi there i am loaded NOWW</h2> |
||||
<Provider store={store}> |
||||
<Router /> |
||||
</Provider> |
||||
; |
||||
</> |
||||
); |
||||
}; |
||||
|
||||
export default mahdi; |
Loading…
Reference in new issue