Skip to content

Commit fc33fc6

Browse files
authored
Create index.js
1 parent 8a47f01 commit fc33fc6

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

app/pages/404/index.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import LongPage from "classes/LongPage"
2+
3+
export default class Four04 extends LongPage {
4+
constructor() {
5+
super({
6+
element: "main",
7+
id: "404",
8+
elements: {},
9+
})
10+
}
11+
12+
/** Life Cycle */
13+
create() {
14+
super.create()
15+
this.reCalculate()
16+
}
17+
}

0 commit comments

Comments
 (0)