9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
import { h, render } from 'preact';
|
|
import { Search } from '../Search';
|
|
import 'focus-visible';
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const root = document.getElementById('top-bar--search');
|
|
|
|
render(<Search />, root, root.firstElementChild);
|
|
});
|