UNPKG

create-chrome-ext

Version:

Scaffolding your chrome extension, multiple boilerplates supported!

8 lines (5 loc) 188 B
/* @refresh reload */ import { render } from 'solid-js/web' import './index.css' import { Popup } from './Popup' render(() => <Popup />, document.getElementById('app') ?? document.body)