vite/playground/css/async.js
2022-05-09 09:36:14 +02:00

9 lines
208 B
JavaScript

import './async.css'
const div = document.createElement('div')
div.className = 'async'
document.body.appendChild(div)
div.textContent = `async chunk (this should be teal) ${
getComputedStyle(div).color
}`