11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
|
import { options, Fragment, Component } from 'preact';
|
||
|
|
||
|
export function initDevTools() {
|
||
|
if (typeof window != 'undefined' && window.__PREACT_DEVTOOLS__) {
|
||
|
window.__PREACT_DEVTOOLS__.attachPreact('10.8.2', options, {
|
||
|
Fragment,
|
||
|
Component
|
||
|
});
|
||
|
}
|
||
|
}
|