import { Layout } from 'flipper-plugin'; import React from 'react'; import { DeserializedRealmObject, SortedObjectSchema } from '../CommonTypes'; import DataVisualizer from '../pages/DataVisualizer'; import { DataTabHeader } from './DataTabHeader'; import SchemaSelect from './SchemaSelect'; type InputType = { schemas: SortedObjectSchema[]; objects: DeserializedRealmObject[]; currentSchema: SortedObjectSchema; sortingDirection: 'ascend' | 'descend' | null; sortingColumn: string | null; hasMore: boolean; totalObjects: number; fetchMore: () => void; }; export const DataVisualizerWrapper = ({ schemas, objects, currentSchema, sortingDirection, sortingColumn, hasMore, fetchMore, totalObjects }: InputType) => { return ( <> ); };