1import React from 'react'; 2 3export default function ErrorToastContainer({ 4 children, 5}: { 6 children: React.ReactNode; 7}): React.ReactElement { 8 return <>{children}</>; 9} 10