mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-17 07:57:43 +02:00
13 lines
152 B
JavaScript
13 lines
152 B
JavaScript
import ready from 'dom101/ready'
|
|
import onmount from 'onmount'
|
|
|
|
/**
|
|
* Behavior: Wrapping
|
|
*/
|
|
|
|
ready(() => {
|
|
setTimeout(() => {
|
|
onmount()
|
|
})
|
|
})
|