feat: add capabilities

This commit is contained in:
Morten Olsen
2023-09-26 09:08:08 +02:00
parent a81afc9221
commit c00b073d37
43 changed files with 3284 additions and 305 deletions

View File

@@ -0,0 +1,12 @@
const Foo = () => {
return <div></div>;
};
const worker = () =>
new Worker(new URL('./script.ts', import.meta.url), {
type: 'module',
});
const view = <Foo />;
export { worker, view };