Skip to content

Commit

Permalink
feat(extensions): use components instead of elements
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Feb 23, 2022
1 parent d115ead commit ed62cf2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/spec/extension/ExamplePropertiesProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ function provideEntries(element, groups) {

newGroup.entries.push({
id: 'foo-button-entry-1',
component: <AsyncDataEntry />
component: AsyncDataEntry
},{
id: 'foo-button-entry-2',
component: <SimplyButtonEntry />
component: SimplyButtonEntry
}, {
id: 'foo-button-entry-3',
component: <AddPropertiesEntry />
component: AddPropertiesEntry
}, {
id: 'foo-button-entry-4',
component: <ChangeLayoutEntry />
component: ChangeLayoutEntry
}, {
id: 'foo-button-entry-5',
component: <OrderingEntry element={ element } />
component: OrderingEntry
});

groups.push(newGroup);
Expand All @@ -51,7 +51,7 @@ function provideEntries(element, groups) {

generalGroup.entries.push({
id: 'foo-entry',
component: <SimpleInputEntry element={ element } />
component: SimpleInputEntry
});

return groups;
Expand Down

0 comments on commit ed62cf2

Please sign in to comment.