UNPKG

256 BJavaScriptView Raw
1import { options, Fragment, Component } from 'preact';
2
3export function initDevTools() {
4 if (typeof window != 'undefined' && window.__PREACT_DEVTOOLS__) {
5 window.__PREACT_DEVTOOLS__.attachPreact('10.4.4', options, {
6 Fragment,
7 Component
8 });
9 }
10}