mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
Explicitely support React out of the box
This commit is contained in:
parent
ca7cc26df5
commit
4e0b798031
7 changed files with 63 additions and 10 deletions
7
src/MyReactComponent.tsx
Normal file
7
src/MyReactComponent.tsx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
|
||||
export function MyReactComponent() {
|
||||
return <div>My React Component</div>;
|
||||
}
|
||||
|
||||
export default MyReactComponent;
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
export * from "./myFunction";
|
||||
export * from "./myObject";
|
||||
export * from "./MyReactComponent";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue