import React from 'react'; import VectorStoreSidePanel from './VectorStore/VectorStoreSidePanel'; import FilesSectionSelector from './FilesSectionSelector'; import { Button } from '../ui'; import { Outlet, useNavigate, useParams } from 'react-router-dom'; export default function VectorStoreView() { const params = useParams(); const navigate = useNavigate(); return (
); }