Explicitely support React out of the box

This commit is contained in:
garronej 2023-05-21 08:04:44 +02:00
parent ca7cc26df5
commit 4e0b798031
7 changed files with 63 additions and 10 deletions

7
src/MyReactComponent.tsx Normal file
View file

@ -0,0 +1,7 @@
export function MyReactComponent() {
return <div>My React Component</div>;
}
export default MyReactComponent;

View file

@ -1,2 +1,3 @@
export * from "./myFunction";
export * from "./myObject";
export * from "./MyReactComponent";