MCPcopy Create free account
hub / github.com/VienLi/CcView / TableQueryProp

Interface TableQueryProp

src/components/Query/QueryFactory.tsx:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import loadable from '@loadable/component';
4
5interface TableQueryProp {
6 query: Record<string, any>
7 config: QueryConfig
8 eventMap?: Record<string, Function>
9 setQuery: (query: any) => void
10}
11const ItemComponent = loadable((props: {is: string}) => import(`./item/${props.is}.tsx`), {
12 fallback: <div>Loading...</div>,
13 cacheKey: props => props.is

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected