import { FC } from 'react' import Link from 'next/link' import { Badge, Button, IconAlertCircle, Typography } from '@supabase/ui' import { PostgresTable } from '@supabase/postgres-meta' import { useStore } from 'hooks' interface Props { table: PostgresTable } const GridHeaderActions: FC = ({ table }) => { // Will need to import from a constants json of sorts const { ui } = useStore() const projectRef = ui.selectedProject?.ref const urlToRLSPolicies = `/project/${projectRef}/auth/policies` return (
{!table.rls_enabled && ( )} {/* */}
) } export default GridHeaderActions