MCPcopy Index your code
hub / github.com/tinyplex/tinybase / TablesActions

Function TablesActions

src/ui-react-inspector/actions/tables.tsx:65–82  ·  view source on GitHub ↗
({store}: TablesProps)

Source from the content-addressed store, hash-verified

63);
64
65export const TablesActions = ({store}: TablesProps) => (
66 <Actions
67 left={
68 <ConfirmableActions
69 actions={[['add', 'Add table', AddTable]]}
70 store={store}
71 />
72 }
73 right={
74 useHasTables(store) ? (
75 <ConfirmableActions
76 actions={[['delete', 'Delete all tables', DeleteTables]]}
77 store={store}
78 />
79 ) : null
80 }
81 />
82);
83
84// --
85

Callers

nothing calls this directly

Calls 1

useHasTablesFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…