We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26fac0b commit 950d9c7Copy full SHA for 950d9c7
packages/react-renderer-demo/src/app/src/components/landing-page/landing-page-cards.js
@@ -6,7 +6,9 @@ import Typography from '@material-ui/core/Typography';
6
import Divider from '@material-ui/core/Divider';
7
8
import dynamic from 'next/dynamic';
9
-const CodeEditor = dynamic(import('@docs/components/code-editor'))
+const CodeEditor = dynamic(import('@docs/components/code-editor'), {
10
+ ssr: false,
11
+});
12
13
const value = `import React from 'react';
14
import FormRenderer, { componentTypes } from '@data-driven-forms/react-form-renderer';
0 commit comments