import { FC } from 'react' import { observer } from 'mobx-react-lite' import Table from 'components/to-be-cleaned/Table' import FunctionList from './FunctionList' interface Props { schema: string filterString: string editFunction: (fn: any) => void deleteFunction: (fn: any) => void } const SchemaTable: FC = ({ schema, filterString, editFunction = () => {}, deleteFunction = () => {}, }) => { return (
schema

{schema}

Name Arguments Return type } body={ } /> ) } export default observer(SchemaTable)