Nothing works, I dont understand modern javascript

This commit is contained in:
Igor Katson 2023-11-21 00:50:35 +00:00
parent 72666e9258
commit d5cf369a75
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
139 changed files with 10138 additions and 55 deletions

View file

@ -0,0 +1,10 @@
import { options, Fragment, Component } from 'preact';
export function initDevTools() {
if (typeof window != 'undefined' && window.__PREACT_DEVTOOLS__) {
window.__PREACT_DEVTOOLS__.attachPreact('10.19.2', options, {
Fragment,
Component
});
}
}