1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-17 07:57:43 +02:00
2020-06-14 22:21:27 +10:00

13 lines
152 B
JavaScript

import ready from 'dom101/ready'
import onmount from 'onmount'
/**
* Behavior: Wrapping
*/
ready(() => {
setTimeout(() => {
onmount()
})
})