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