mirror of
https://github.com/morten-olsen/bob.git
synced 2026-02-08 01:46:29 +01:00
13 lines
198 B
TypeScript
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 };
|