Hi, after switching to @material-ui/[email protected] from @material-ui/core my animation doesn't work anymore. This happens because all classes now has random suffixes. like here:

So, the way I did it before:
const fadeInUp = randomize('a', 10);
...
'fadeIn-entering': {
animation: `${fadeInUp} .2s ease-in`,
},
[`@keyframes ${fadeInUp}`]: {
from: {
...
},
to: {
...
},
},
...
doesn't work since keyframe name is not the same that I expecting.
Here is a reproduction: https://codesandbox.io/s/nnjp98590
Is there any patterns how to work with keyframes in new styles?
With JSSv10 keyframes are now scoped.
https://github.com/cssinjs/jss/blob/master/changelog.md#breaking-changes
https://github.com/cssinjs/jss/issues/346
@joshwooding , thank you. issue solved.
@joshwooding Code Sandbox link is 404
@bflemi3 Sorry, I tend to delete sandboxes fairly regularly due to the limit. This is what it was https://codesandbox.io/s/nuw9t I guess I should donate and remove the limit 馃