aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2024-04-28 18:45:30 +0300
committeromagdy7 <omar.professional8777@gmail.com>2024-04-28 18:45:30 +0300
commite1e42fc6c17ba99b7cad940b3c3e1c97df959140 (patch)
treed9cb78b61514eef078d8284321dad326ad52b949 /frontend/src/App.tsx
downloadcloudrender-e1e42fc6c17ba99b7cad940b3c3e1c97df959140.tar.xz
cloudrender-e1e42fc6c17ba99b7cad940b3c3e1c97df959140.zip
Added a simple UI for our application
Diffstat (limited to 'frontend/src/App.tsx')
-rw-r--r--frontend/src/App.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
new file mode 100644
index 0000000..370832d
--- /dev/null
+++ b/frontend/src/App.tsx
@@ -0,0 +1,11 @@
+import './App.css'
+import ImageProcessor from './components/ImageProcessor'
+
+function App() {
+
+ return (
+ <ImageProcessor />
+ )
+}
+
+export default App