Last active
August 16, 2023 08:52
-
-
Save hheinsoee/754979af78e414dc08948892bcbb48d2 to your computer and use it in GitHub Desktop.
Simple Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="simple"></div> | |
<script> | |
var userList = [ | |
{ | |
id: 6, | |
profile_image_url: "https://avatars.githubusercontent.com/u/35089574?v=4", | |
name: "Hein Soe", | |
age: 28, | |
rs: true, | |
create_time: "2023-08-14T06:18:52.000Z" | |
}, | |
{ | |
id: 5, | |
profile_image_url: "https://lh3.googleusercontent.com/a/AAcHTtcwpenti5VYnLAXfWa3hrv-rVVTJyvIjq0-ESm89Ikdt60=s96-c", | |
name: "heinsoe.com", | |
age: 28, | |
rs: true, | |
create_time: "2023-08-14T04:55:47.000Z" | |
}, | |
//more | |
]; | |
TheTable( | |
{ | |
element: '#simple', | |
data: userList, | |
name: "simple", | |
} | |
) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment