aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
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