Passed
Push — master ( fa13eb...33d68f )
by Felipe Catão do
01:03
created

functionsClass.gotoLink   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
import menu from "../components/menu.js"
2
import EngineApp from '../../Framework/engine.js'
3
import homePage from "../pages/home.js"
4
import routes from '../routes/routes.js'
5
6
var eng=new EngineApp()
7
var rto = new routes()
0 ignored issues
show
Coding Style Best Practice introduced by
By convention, constructors like routes should be capitalized.
Loading history...
8
//renderizar o menu
9
rto.routesCreated()
10
menu(1)
11
12
class functionsClass{
13
    gotoLink(){
14
15
    }
16
}
17
18
export default functionsClass