There was an error while loading. Please reload this page.
1 parent 52ac4df commit 50008e7Copy full SHA for 50008e7
2 files changed
packages/framework-base/src/immutable-merge/README.md
@@ -174,11 +174,11 @@ complexObject = processImmutable(
174
{
175
object: {
176
177
- style: myStyleProcessor
178
- }
179
+ style: myStyleProcessor,
+ },
180
},
181
- complexObject
+ complexObject,
182
);
183
```
184
packages/framework-base/src/memo-cache/README.md
@@ -128,7 +128,7 @@ export const MyComponent = (props: IMyComponentProps) => {
128
const colors = theme.colors;
129
return {
130
backgroundColor: colors.neutralBackground,
131
- color: colors.neutralForeground
+ color: colors.neutralForeground,
132
// more stuff from theme
133
};
134
}, [theme]);
0 commit comments