import { AlertIcon } from '@primer/octicons-react'; import cn from '~/utils/cn'; import Card from '~/components/Card'; import Code from '~/components/Code'; interface Props { message: string; } export function ErrorView({ message }: Props) { return (
Error
Could not apply changes to your ACL policy due to the following error:
{message}
); }