aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
blob: 370832daddac229bda3f7ccb4d6602dccf865a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
import './App.css'
import ImageProcessor from './components/ImageProcessor'

function App() {

  return (
    <ImageProcessor />
  )
}

export default App