import React from 'react' export default function DbSelector(props) { const { selectedDb, qdbs, onChange, hideLockedDbs } = props const selectedIndex = qdbs && selectedDb ? qdbs.findIndex((qdb) => { return qdb.name === selectedDb.name }) : -1 return ( <> ) }