'use client' import { Plus, Upload } from '@sim/emcn' import { Table as TableIcon } from '@sim/emcn/icons' import { type ChromeActionSpec, ResourceChromeFallback, } from '@/app/workspace/[workspaceId]/components' const COLUMNS = [ { id: 'name', header: 'Name' }, { id: 'columns', header: 'Columns' }, { id: 'rows', header: 'Rows' }, { id: 'created', header: 'Created' }, { id: 'owner', header: 'Owner' }, { id: 'updated', header: 'Last Updated' }, ] const ACTIONS: ChromeActionSpec[] = [ { text: 'Import CSV', icon: Upload }, { text: 'New table', icon: Plus, variant: 'primary' }, ] export default function TablesLoading() { return ( ) }