diff --git a/src/App.tsx b/src/App.tsx
index 27ef7e2..d7618a9 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -5,6 +5,7 @@ import NotFound from "./components/NotFound"
import Login from "./components/Login"
import { useIsAuthQuery } from "./generated/graphql"
import { useEffect } from "react"
+import BucketSelect from "./components/BucketSelect"
const App: React.FC = () => {
const { data } = useIsAuthQuery()
@@ -27,6 +28,7 @@ const App: React.FC = () => {
{/* Private only routes */}
{
isAuth && [
+ ,
,
,
,
diff --git a/src/components/BucketSelect.tsx b/src/components/BucketSelect.tsx
new file mode 100644
index 0000000..d902419
--- /dev/null
+++ b/src/components/BucketSelect.tsx
@@ -0,0 +1,30 @@
+import React from "react"
+import { useState } from "react"
+import { Link } from "react-router-dom"
+import Breadcrum from "./Breadcrum"
+import MoreMenu from "./MoreMenu"
+
+const BucketSelect: React.FC = () => {
+
+ const [buckets] = useState(["dev"])
+
+ return (
+
+
+
+ {buckets.map((e)=>
+ -
+ {e}
+
+ )}
+
+
+ )
+}
+
+export default BucketSelect
diff --git a/src/components/FileBrowser.tsx b/src/components/FileBrowser.tsx
index b2382ca..d89927f 100644
--- a/src/components/FileBrowser.tsx
+++ b/src/components/FileBrowser.tsx
@@ -107,7 +107,7 @@ const FileBrowser: React.FC = (props) => {
await handleDrop(files)
}}
>
-
+
{
props.history.push(newPath.toURI())
}}/>