RendererErrorMessage.tsx 479 B

123456789101112131415161718
  1. import React from 'react';
  2. export const RendererErrorMessage: React.FC = () => {
  3. return (
  4. <p
  5. style={{
  6. color: 'red',
  7. backgroundColor: 'white',
  8. padding: '0.75rem',
  9. borderRadius: '4px',
  10. }}
  11. >
  12. ⚠️ <strong>Developer Warning:</strong>{' '}
  13. <code>rendererOptions</code> is <code>null</code>
  14. . Make sure to call <code>useRendererConfig()</code> in your page component to initialize it properly.
  15. </p>
  16. );
  17. };