| Total Complexity | 3 |
| Complexity/F | 1 |
| Lines of Code | 23 |
| Function Count | 3 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | //Criar aqui o exportador do WebPack// |
||
| 2 | import routesEngine from './routesEngine.js' |
||
| 3 | import RenderEngine from './render.js' |
||
| 4 | import Components from './components.js' |
||
| 5 | import Security from './security.js' |
||
| 6 | import reactive from './reactive.js' |
||
| 7 | |||
| 8 | const RoutesEngine = ()=>{ |
||
|
|
|||
| 9 | const RouteEngine = new routesEngine() |
||
| 10 | return RouteEngine |
||
| 11 | } |
||
| 12 | |||
| 13 | const Renders = () =>{ |
||
| 14 | const Renders = new RenderEngine() |
||
| 15 | return Renders |
||
| 16 | } |
||
| 17 | |||
| 18 | class hj{ |
||
| 19 | teste(){ |
||
| 20 | |||
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 | export default new hj |
||