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 26e2327 commit 6a9c60aCopy full SHA for 6a9c60a
packages/suir-component-mapper/demo/index.js
@@ -17,7 +17,7 @@ const compositeMapper = {
17
};
18
19
const App = () => {
20
- const [, setSchema] = useState(wizardSchema);
+ const [schema, setSchema] = useState(wizardSchema);
21
22
return (
23
<div>
@@ -35,7 +35,7 @@ const App = () => {
35
onSubmit={console.log}
36
componentMapper={compositeMapper}
37
FormTemplate={(props) => <FormTemplate {...props} showFormControls={true} />}
38
- schema={fieldArraySchema}
+ schema={schema}
39
onCancel={() => console.log('canceling')}
40
/>
41
</div>
0 commit comments