import React from "react"; import FleetMarkdown from "components/FleetMarkdown"; interface IQueryTableNotesProps { notes: string; } const baseClass = "query-table-notes"; const QueryTableNotes = ({ notes }: IQueryTableNotesProps) => { return (

Notes

); }; export default QueryTableNotes;