Pagination working for columns
Bring pagination system from KIA that is compatible with page refreshes
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export function createElement(name, properties) {
|
||||
const element = document.createElement(name)
|
||||
|
||||
for (var key in properties) {
|
||||
element.setAttribute(key, properties[key])
|
||||
}
|
||||
|
||||
return element
|
||||
}
|
||||
Reference in New Issue
Block a user