Files
bob/packages/playground/src/experiments/hello/index.tsx
2023-09-26 09:08:08 +02:00

13 lines
198 B
TypeScript

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