import * as React from 'react'; import { Route, Switch } from 'react-router-dom'; import EntityPanel from '../entities/EntityPanel'; import QueryInput, { QueryInputProps } from './QueryInput'; import QueryListPanel from './QueryListPanel'; import { Routes } from '../../Constants'; import 'highlight.js/styles/atelier-cave-light.css'; interface QueryPanelProps {} const QueryPanel = ({ ...props }: QueryPanelProps & QueryInputProps) => { return ( <> ); }; export default QueryPanel;