import { __ } from "@wordpress/i18n"; import { Button } from "@wordpress/components"; import { useTableStore } from "../store"; export function SortPreviewBanner() { const sortPreviewMode = useTableStore(state => state.sortPreviewMode); const exitSortPreviewMode = useTableStore( state => state.exitSortPreviewMode ); if (!sortPreviewMode) { return null; } return (