mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-03-07 10:41:03 +08:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
![]() |
import App from './App';
|
||
|
|
||
|
/**
|
||
|
* Initializing demo
|
||
|
*/
|
||
|
new App();
|
||
|
|
||
|
/**
|
||
|
* Adding preview (demo only)
|
||
|
*/
|
||
|
document.querySelector('.simple-keyboard').insertAdjacentHTML('beforebegin', `
|
||
|
<div class="simple-keyboard-preview">
|
||
|
<textarea class="input" readonly>Hello World!</textarea>
|
||
|
</div>
|
||
|
`);
|