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

function App() {

  return (
    // <Dashboard clusterName={"cloudrender-backend-cluster"} />
    <ImageProcessor />
  )
}

export default App