emoji-picker-element/test/benchmark/first-load.html

16 lines
321 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script type="module" src="./benchmark.js"></script>
<script type="module">
import Picker from './picker.js'
const dataSource = './data.json'
document.body.appendChild(new Picker({ dataSource }))
</script>
</body>
</html>