feat: add build pipeline

This commit is contained in:
Morten Olsen
2024-12-10 22:52:35 +01:00
parent d833dc5643
commit 02614d216c
17 changed files with 1004 additions and 0 deletions

9
app/src/app.tsx Normal file
View File

@@ -0,0 +1,9 @@
const App = () => {
return (
<div>
<h1>Hello World</h1>
</div>
);
};
export { App };