Warp/node_modules/preact/devtools/src/devtools.js
2024-01-05 19:14:38 +07:00

10 lines
257 B
JavaScript

import { options, Fragment, Component } from 'preact';
export function initDevTools() {
if (typeof window != 'undefined' && window.__PREACT_DEVTOOLS__) {
window.__PREACT_DEVTOOLS__.attachPreact('10.19.3', options, {
Fragment,
Component
});
}
}